BleCharacteristicValue constructor
BleCharacteristicValue({})
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,
});