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