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