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