instance property
AzakawFlutterSdkPlatform
get
instance
The default instance of AzakawFlutterSdkPlatform to use.
Defaults to MethodChannelAzakawFlutterSdk.
Implementation
static AzakawFlutterSdkPlatform get instance => _instance;
set
instance
(AzakawFlutterSdkPlatform instance)
Platform-specific implementations should set this with their own platform-specific class that extends AzakawFlutterSdkPlatform when they register themselves.
Implementation
static set instance(AzakawFlutterSdkPlatform instance) {
PlatformInterface.verifyToken(instance, _token);
_instance = instance;
}