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