instance property

The default instance of SecugenBlePluginPlatform to use.

Defaults to MethodChannelSecugenBlePlugin.

Implementation

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

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

Implementation

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