instance property

AbdallahSdkPlatform get instance

The default instance of FlutterMetaSdkPlatform to use.

Defaults to MethodChannelFlutterMetaSdk.

Implementation

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

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

Implementation

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