instance property

The default instance of FlutterMsitefPluginPlatform to use.

Defaults to MethodChannelFlutterMsitefPlugin.

Implementation

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

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

Implementation

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