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