instance property

The default instance of FlutterAndroidLauncherPlatform to use.

Defaults to MethodChannelFlutterAndroidLauncher.

Implementation

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

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

Implementation

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