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