instance property

The default instance of ConsysGertecPluginPlatform to use.

Defaults to MethodChannelConsysGertecPlugin.

Implementation

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

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

Implementation

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