AndroidNetworkInfo constructor

const AndroidNetworkInfo({
  1. String? networkType,
  2. String? connectionType,
  3. String? operatorName,
  4. String? operatorCode,
  5. String? countryIso,
  6. int? signalStrength,
  7. bool? isRoaming,
  8. String? networkGeneration,
  9. String? wifiSSID,
  10. String? wifiBSSID,
  11. int? wifiSignalLevel,
  12. String? ipAddress,
  13. String? macAddress,
  14. bool? isVpnActive,
  15. String? mobileNetworkCode,
  16. String? mobileCountryCode,
  17. int? rxLinkSpeed,
  18. int? txLinkSpeed,
  19. String? publicIp,
  20. int? upstreamBandwidth,
  21. int? downstreamBandwidth,
  22. int? frequency,
  23. int? linkSpeed,
  24. int? networkId,
  25. int? signalLevel,
  26. int? strength,
  27. bool? isConnected,
  28. bool? isValidated,
  29. bool? isMetered,
  30. bool? hasEthernet,
  31. bool? hasLowPan,
})

Implementation

const AndroidNetworkInfo({
  this.networkType,
  this.connectionType,
  this.operatorName,
  this.operatorCode,
  this.countryIso,
  this.signalStrength,
  this.isRoaming,
  this.networkGeneration,
  this.wifiSSID,
  this.wifiBSSID,
  this.wifiSignalLevel,
  this.ipAddress,
  this.macAddress,
  this.isVpnActive,
  this.mobileNetworkCode,
  this.mobileCountryCode,
  this.rxLinkSpeed,
  this.txLinkSpeed,
  this.publicIp,
  this.upstreamBandwidth,
  this.downstreamBandwidth,
  this.frequency,
  this.linkSpeed,
  this.networkId,
  this.signalLevel,
  this.strength,
  this.isConnected,
  this.isValidated,
  this.isMetered,
  this.hasEthernet,
  this.hasLowPan,
});