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