BleCommand constructor

BleCommand({
  1. required String service,
  2. required String characteristic,
  3. Uint8List? writeValue,
})

Implementation

BleCommand({
  required this.service,
  required this.characteristic,
  this.writeValue,
});