instance property

The default instance of FlutterAndroidInfoPlatform to use.

Defaults to MethodChannelFlutterAndroidInfo.

Implementation

static FlutterAndroidInfoPlatform get instance => _instance;
void instance=(FlutterAndroidInfoPlatform instance)

Platform-specific implementations should set this with their own platform-specific class that extends FlutterAndroidInfoPlatform when they register themselves.

Implementation

static set instance(FlutterAndroidInfoPlatform instance) {
  PlatformInterface.verifyToken(instance, _token);
  _instance = instance;
}