instance property

PrinterLabelPlatform get instance

The default instance of PrinterLabelPlatform to use.

Defaults to PrinterLabelPlatform.

Implementation

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

Implementation

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