instance property

FluttersdkPlatform get instance

The default instance of FluttersdkPlatform to use.

Defaults to MethodChannelFluttersdk.

Implementation

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

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

Implementation

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