instance property
ZebraDataWedgePlatform
get
instance
The current platform implementation instance.
Implementation
static ZebraDataWedgePlatform get instance => _instance;
set
instance
(ZebraDataWedgePlatform instance)
Sets the platform implementation instance.
This is typically used for testing or custom platform implementations.
Implementation
static set instance(ZebraDataWedgePlatform instance) {
PlatformInterface.verifyToken(instance, _token);
_instance = instance;
}