instance property

The default instance of FlutterLoadingOverlayPlatform to use.

Defaults to MethodChannelFlutterLoadingOverlay.

Implementation

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

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

Implementation

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