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