WifiInfo constructor

WifiInfo(
  1. String? authAlgorithm,
  2. String? bssNetworkType,
  3. bool? connectable,
  4. String? defaultCipherAlgorithm,
  5. String? flags,
  6. int? numberOfBssid,
  7. int? numberOfPhyTypesSupported,
  8. String? profileName,
  9. int? rssi,
  10. String? ssid,
  11. bool? securityEnabled,
  12. int? signalQuality,
)

Returns a new Instance WifiInfo

Implementation

WifiInfo(
    this.authAlgorithm,
    this.bssNetworkType,
    this.connectable,
    this.defaultCipherAlgorithm,
    this.flags,
    this.numberOfBssid,
    this.numberOfPhyTypesSupported,
    this.profileName,
    this.rssi,
    this.ssid,
    this.securityEnabled,
    this.signalQuality);