getSimCards method
Implementation
Future<List<SimCard>> getSimCards() async {
final List<SimCard> simCards = [];
dynamic response = await _channel.invokeMethod('getSimCards', null);
for (Map map in response) {
simCards.add(new SimCard.fromJson(map));
}
return simCards;
}