instance property

The default instance of UmangTestPluginPlatform to use.

Defaults to MethodChannelUmangTestPlugin.

Implementation

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

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

Implementation

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