instance property

The default instance of FlutterSamplePluginPlatform to use.

Defaults to MethodChannelFlutterSamplePlugin.

Implementation

static FlutterSamplePluginPlatform get instance => _instance;
set instance (FlutterSamplePluginPlatform instance)

Platform-specific implementations should set this with their own platform-specific class that extends FlutterSamplePluginPlatform when they register themselves.

Implementation

static set instance(FlutterSamplePluginPlatform instance) {
  PlatformInterface.verifyToken(instance, _token);
  _instance = instance;
}