instance property

The default instance of FlutterConfigPlusPlatform to use.

Defaults to MethodChannelFlutterConfigPlus.

Implementation

static FlutterConfigPlusPlatform get instance => _instance;
void 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;
}