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