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