WifiConfigState constructor

WifiConfigState({
  1. bool gettingWifiInfo = false,
  2. String? ssid,
  3. WifiScanResult? scanResult,
  4. DHCPInfo? dhcpInfo,
  5. bool configuring = false,
  6. String? configResult,
  7. int? errorCode,
})

Implementation

WifiConfigState({
  this.gettingWifiInfo = false,
  this.ssid,
  this.scanResult,
  this.dhcpInfo,
  this.configuring = false,
  this.configResult,
  this.errorCode,
});