simCountryCode property

Future<String?> simCountryCode

Implementation

static Future<String?> get simCountryCode async {
  final String? version = await _channel.invokeMethod('getSimCountryCode');
  return version;
}