WifiP2pDevice constructor

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

Implementation

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