SimCard constructor

SimCard({
  1. required String slotIndex,
  2. required String carrierName,
  3. required String countryISO,
  4. required String number,
})

Implementation

SimCard({
  required this.slotIndex,
  required this.carrierName,
  required this.countryISO,
  required this.number,
});