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