getSimPhoneInfo method
Implementation
@override
Future<List<SimPhoneInfo>> getSimPhoneInfo() async {
final result = await methodChannel.invokeMethod<List<dynamic>>('getSimPhoneInfo');
return result?.map((e) => SimPhoneInfo.fromMap(e)).toList() ?? [];
}