instance property

FlutterYsdkPlatform get instance

The default instance of FlutterYsdkPlatform to use.

Defaults to MethodChannelFlutterYsdk.

Implementation

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

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

Implementation

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