isEsimSupported method
Returns whether the current device/platform supports eSIM operations.
Implementation
@override
Future<bool> isEsimSupported() async {
try {
final supported = await methodChannel.invokeMethod<bool>('isEsimSupported');
return supported == true;
} on PlatformException {
return false;
}
}