SimCard constructor

SimCard({
  1. String carrierName = '',
  2. String displayName = '',
  3. int slotIndex = -1,
  4. String number = '',
  5. String countryIso = '',
  6. String countryPhonePrefix = '',
})

Implementation

SimCard({
  this.carrierName = '',
  this.displayName = '',
  this.slotIndex = -1,
  this.number = '',
  this.countryIso = '',
  this.countryPhonePrefix = '',
});