instance property

FlutterEsimPlatform get instance

The default instance of FlutterEsimPlatform to use.

Defaults to MethodChannelFlutterEsim.

Implementation

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

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

Implementation

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