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