CarrierData constructor

CarrierData({
  1. bool allowsVOIP = false,
  2. String? carrierName,
  3. String? isoCountryCode,
  4. String? mobileCountryCode,
  5. String? mobileNetworkCode,
  6. String? mobileNetworkOperator,
  7. String? networkGeneration,
  8. String? radioType,
})

Implementation

CarrierData({
  this.allowsVOIP = false,
  this.carrierName,
  this.isoCountryCode,
  this.mobileCountryCode,
  this.mobileNetworkCode,
  this.mobileNetworkOperator,
  this.networkGeneration,
  this.radioType,
});