instance property

The default instance of PluginSensiePlatform to use.

Defaults to MethodChannelPluginSensie.

Implementation

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

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

Implementation

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