instance property
EsimInstallerPlatform
get
instance
The default instance of EsimInstallerPlatform to use.
Defaults to MethodChannelEsimInstaller.
Implementation
static EsimInstallerPlatform get instance => _instance;
set
instance
(EsimInstallerPlatform instance)
Platform-specific implementations should set this with their own platform-specific class that extends EsimInstallerPlatform when they register themselves.
Implementation
static set instance(EsimInstallerPlatform instance) {
PlatformInterface.verifyToken(instance, _token);
_instance = instance;
}