instance property

The default instance of FlutterCustomOverlayPlatform to use.

Defaults to MethodChannelFlutterCustomOverlay.

Implementation

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

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

Implementation

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