NetworkAdapter constructor

NetworkAdapter({
  1. String? name,
  2. String? id,
  3. int? index,
  4. int? bandwidth,
  5. String? connectionName,
  6. int? connectionStatus,
  7. String? ssid,
  8. bool? enabled,
  9. int? type,
  10. String? macAddress,
  11. String? ipAddress,
  12. String? ipAddressIPv6,
  13. String? ipMaskAddress,
  14. String? gatewayIpAddress,
  15. String? ipBroadcast,
})

Implementation

NetworkAdapter(
    {this.name,
    this.id,
    this.index,
    this.bandwidth,
    this.connectionName,
    this.connectionStatus,
    this.ssid,
    this.enabled,
    this.type,
    this.macAddress,
    this.ipAddress,
    this.ipAddressIPv6,
    this.ipMaskAddress,
    this.gatewayIpAddress,
    this.ipBroadcast});