instance property

The default instance of FlutterUlinkSdkPlatform to use.

Defaults to MethodChannelFlutterUlinkSdk.

Implementation

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

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

Implementation

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