instance property

PdfMasterPlatform get instance

The default instance of PdfMasterPlatform to use.

Defaults to MethodChannelPdfMaster.

Implementation

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

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

Implementation

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