CarrierData constructor

CarrierData({
  1. required String mobileNetworkCode,
  2. required bool carrierAllowsVOIP,
  3. required String mobileCountryCode,
  4. required String carrierName,
  5. required String isoCountryCode,
})

Implementation

CarrierData({
  required this.mobileNetworkCode,
  required this.carrierAllowsVOIP,
  required this.mobileCountryCode,
  required this.carrierName,
  required this.isoCountryCode,
});