instance property

IminViceScreenPlatform get instance

The default instance of IminViceScreenPlatform to use.

Defaults to MethodChannelIminViceScreen.

Implementation

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

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

Implementation

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