instance property

The default instance of MirrorflyUikitPluginPlatform to use.

Defaults to MethodChannelMirrorflyUikitPlugin.

Implementation

static MirrorflyUikitPluginPlatform get instance => _instance;
void instance=(MirrorflyUikitPluginPlatform instance)

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

Implementation

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