SimCard.fromMap constructor
Implementation
factory SimCard.fromMap(Map<String, dynamic> json) => SimCard(
carrierName: json["carrierName"],
displayName: json["displayName"],
slotIndex: int.tryParse(json["slotIndex"]),
number: json["number"],
countryIso: json["countryIso"],
countryPhonePrefix: json["countryPhonePrefix"],
);