BleCharacteristicValue constructor

BleCharacteristicValue({
  1. required String characteristicUuid,
  2. required String deviceAddress,
  3. required List<int> value,
})

Constructs a new instance of BleCharacteristicValue.

Requires the characteristicUuid, deviceAddress, and value to initialize the instance. Each of these parameters should be fetched from the connected Bluetooth device when reading the characteristic.

Implementation

BleCharacteristicValue({
  required this.characteristicUuid,
  required this.deviceAddress,
  required this.value,
});