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