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