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