instance property
ExtractPdfPagePlatform
get
instance
The default instance of ExtractPdfPagePlatform to use.
Defaults to MethodChannelExtractPdfPage.
Implementation
static ExtractPdfPagePlatform get instance => _instance;
set
instance
(ExtractPdfPagePlatform instance)
Platform-specific implementations should set this with their own platform-specific class that extends ExtractPdfPagePlatform when they register themselves.
Implementation
static set instance(ExtractPdfPagePlatform instance) {
PlatformInterface.verifyToken(instance, _token);
_instance = instance;
}