instance property

The default instance of NewpasQ6PrinterPlatform to use.

Defaults to MethodChannelNewpasQ6Printer.

Implementation

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

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

Implementation

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