instance property

The default instance of QuixxiShieldPluginPlatform to use.

Defaults to MethodChannelQuixxiShieldPlugin.

Implementation

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

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

Implementation

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