SimCard constructor

SimCard(
  1. String carrierName,
  2. String countryCode,
  3. String displayName,
  4. bool isNetworkRoaming,
  5. bool isDataRoaming,
  6. int slotIndex,
  7. String serialNumber,
  8. int? subscriptionId,
  9. String? phoneNumber,
)

Implementation

SimCard(
    this.carrierName,
    this.countryCode,
    this.displayName,
    this.isNetworkRoaming,
    this.isDataRoaming,
    // this.mcc,
    // this.mnc,
    this.slotIndex,
    this.serialNumber,
    this.subscriptionId,
    this.phoneNumber,
    );