BleDevice constructor

const BleDevice({
  1. required String address,
  2. String? name,
  3. required int rssi,
  4. Map<String, dynamic>? advertisementData,
})

Implementation

const BleDevice({
  required this.address,
  this.name,
  required this.rssi,
  this.advertisementData,
});