FlutterBluetoothEntry constructor

FlutterBluetoothEntry({
  1. String? mac,
  2. required int signalStrength,
  3. required int timestamp,
  4. required String name,
  5. String? uuid,
  6. int? major,
  7. int? minor,
  8. String? type,
  9. int? txPower,
})

Implementation

FlutterBluetoothEntry({
  this.mac,
  required this.signalStrength,
  required this.timestamp,
  required this.name,
  this.uuid,
  this.major,
  this.minor,
  this.type,
  this.txPower,
});