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