instance property

The default instance of IncogniaFlutterPlatform to use.

Defaults to MethodChannelIncogniaFlutter.

Implementation

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

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

Implementation

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