Wifi constructor

Wifi({
  1. String? state,
  2. String? ssid,
  3. String? bssid,
  4. bool? hiddenSsid,
  5. String? ipv4Address,
  6. String? ipv6Address,
  7. String? signalStrength,
  8. String? linkSpeed,
  9. String? frequency,
  10. String? networkId,
  11. String? gateway,
  12. String? netmask,
  13. String? dns1,
  14. String? dhcpLeaseDuration,
  15. String? w5ghzBand,
  16. bool? isWifiAware,
  17. bool? isWifiDirectAvailable,
})

constructor of Wifi class.

Implementation

Wifi({
  this.state,
  this.ssid,
  this.bssid,
  this.hiddenSsid,
  this.ipv4Address,
  this.ipv6Address,
  this.signalStrength,
  this.linkSpeed,
  this.frequency,
  this.networkId,
  this.gateway,
  this.netmask,
  this.dns1,
  this.dhcpLeaseDuration,
  this.w5ghzBand,
  this.isWifiAware,
  this.isWifiDirectAvailable,
});