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