instance property

PdfeditorPlatform get instance

The default instance of PdfeditorPlatform to use.

Defaults to MethodChannelPdfeditor.

Implementation

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

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

Implementation

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