instance property

The default instance of PrinterControllerPr3Platform to use.

Defaults to MethodChannelPrinterControllerPr3.

Implementation

static PrinterControllerPr3Platform get instance => _instance;
set instance (PrinterControllerPr3Platform instance)

Platform-specific implementations should set this with their own platform-specific class that extends PrinterControllerPr3Platform when they register themselves.

Implementation

static set instance(PrinterControllerPr3Platform instance) {
  PlatformInterface.verifyToken(instance, _token);
  _instance = instance;
}