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