isEsimSupported method

  1. @override
Future<bool> isEsimSupported()
override

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;
  }
}