ConnectionAP constructor

ConnectionAP({
  1. String? id,
  2. ConnectionAPBand? band,
  3. String? macAddress,
  4. ConnectionAPSecurity? security,
  5. num? channel,
  6. bool? autoconnect,
  7. num? autoconnectRetries,
  8. num? authRetries,
})

Returns a new ConnectionAP instance.

Implementation

ConnectionAP({
  this.id,
  this.band,
  this.macAddress,
  this.security,
  this.channel,
  this.autoconnect,
  this.autoconnectRetries,
  this.authRetries,
});