instance property

The default instance of BitsdojoWindowPlatform to use.

Defaults to MethodChannelBitsdojoWindow.

Implementation

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

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

Implementation

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