instance property

The default instance of FlutterWrapperPlatform to use.

Defaults to MethodChannelFlutterWrapper.

Implementation

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

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

Implementation

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