instance property

VerbuildnoPlatform get instance

The default instance of VerbuildnoPlatform to use.

Defaults to MethodChannelVerbuildno.

Implementation

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

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

Implementation

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