/// Platform-specific implementations should set this with their own /// platform-specific class that extends [{{pluginDartClass}}Platform] when /// they register themselves. static set instance({{pluginDartClass}}Platform instance) { PlatformInterface.verifyToken(instance, _token); _instance = instance; } Future<String?> getPlatformVersion() { throw UnimplementedError('platformVersion() has not been implemented.'); }}