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