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