instance property

The default instance of FlutterAvoInspectorPlatform to use.

Defaults to MethodChannelFlutterAvoInspector.

Implementation

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

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

Implementation

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