SimInfo constructor

SimInfo({
  1. required String carrierName,
  2. required String displayName,
  3. required String slotIndex,
  4. required String number,
  5. required String countryIso,
  6. required String countryPhonePrefix,
})

Implementation

SimInfo({
  required this.carrierName,
  required this.displayName,
  required this.slotIndex,
  required this.number,
  required this.countryIso,
  required this.countryPhonePrefix,
});