WifiParsedResult constructor

WifiParsedResult(
  1. String networkEncryption,
  2. String ssid,
  3. String? password, [
  4. bool hidden = false,
  5. String? identity,
  6. String? anonymousIdentity,
  7. String? eapMethod,
  8. String? phase2Method,
])

Implementation

WifiParsedResult(
  this.networkEncryption,
  this.ssid,
  this.password, [
  this.hidden = false,
  this.identity,
  this.anonymousIdentity,
  this.eapMethod,
  this.phase2Method,
]) : super(ParsedResultType.WIFI);