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