instance property

The default instance of FlutterAndroidIntentPlatform to use.

Defaults to MethodChannelFlutterAndroidIntent.

Implementation

static FlutterAndroidIntentPlatform get instance => _instance;
set instance (FlutterAndroidIntentPlatform instance)

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

Implementation

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