characteristicValueStream property

Stream<CharacteristicValue> characteristicValueStream

A stream providing value updates for all the connected BLE devices.

The updates include read responses as well as notifications.

Implementation

Stream<CharacteristicValue> get characteristicValueStream async* {
  await initialize();
  yield* _connectedDeviceOperator.characteristicValueStream;
}