instance property

FlutterHello9Platform get instance

The default instance of FlutterHello9Platform to use.

Defaults to MethodChannelFlutterHello9.

Implementation

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

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

Implementation

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