WifiDirectDevice constructor

WifiDirectDevice({
  1. required String deviceName,
  2. required String deviceAddress,
  3. required String deviceMacAddress,
  4. int? status,
  5. bool isGroupOwner = false,
  6. bool isServiceDiscoveryCapable = true,
  7. String deviceType = 'unknown',
})

Implementation

WifiDirectDevice({
  required this.deviceName,
  required this.deviceAddress,
  required this.deviceMacAddress,
  this.status,
  this.isGroupOwner = false,
  this.isServiceDiscoveryCapable = true,
  this.deviceType = 'unknown',
});