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