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