instance property

The default instance of EsimCompatibilityPlatform to use.

Defaults to MethodChannelEsimCompatibility.

Implementation

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

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

Implementation

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