SimCards.fromMap constructor

SimCards.fromMap(
  1. Map<String, dynamic> map
)

Implementation

factory SimCards.fromMap(Map<String, dynamic> map) {
  return SimCards(
    subscriptionId: map['subscriptionId'] as String,
    displayName: map['displayName'] as String,
    carrierName: map['carrierName'] as String,
    number: map['number'] as String,
    slotIndex: map['slotIndex'] as String,
    countryIso: map['countryIso'] as String,
    carrierId: map['carrierId'] as String,
    isEmbedded: map['isEmbedded'] as String,
    iccId: map['iccId'] as String,
  );
}