instance property

The default instance of FlutterflowAndroidWebviewPlatform to use.

Defaults to MethodChannelFlutterflowAndroidWebview.

Implementation

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

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

Implementation

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