instance property

PdfCombinerPlatform get instance

The default instance of PdfCombinerPlatform to use.

This getter returns the default platform implementation (usually MethodChannelPdfCombiner). Platform-specific implementations should set this to their own class that extends PdfCombinerPlatform.

Implementation

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

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

Implementation

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