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