instance property

The default instance of EpsonPdfPrintPlatform to use.

Defaults to MethodChannelEpsonPdfPrint.

Implementation

static EpsonPdfPrintPlatform get instance => _instance;
void instance=(EpsonPdfPrintPlatform instance)

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

Implementation

static set instance(EpsonPdfPrintPlatform instance) {
  PlatformInterface.verify(instance, _token);
  _instance = instance;
}