TelephonyInfo constructor

TelephonyInfo({
  1. bool? isActive,
  2. bool? isESim,
  3. bool? isRoamingActive,
  4. String? mobileNetworkCode,
  5. String? providerName,
  6. String? signalStrength,
  7. String? providerCountryCode,
  8. String? signalType,
})

Implementation

TelephonyInfo({
  this.isActive,
  this.isESim,
  this.isRoamingActive,
  this.mobileNetworkCode,
  this.providerName,
  this.signalStrength,
  this.providerCountryCode,
  this.signalType,
});