onValueReceived property
this stream emits values:
- anytime
read()
is called - anytime a notification arrives (if subscribed)
Implementation
Stream<List<int>> get onValueReceived => FlutterBluePlus._methodStream.stream
.where((m) => m.method == "OnCharacteristicReceived")
.map((m) => m.arguments)
.map((args) => BmCharacteristicData.fromMap(args))
.where((p) => p.remoteId == remoteId)
.where((p) => p.serviceUuid == serviceUuid)
.where((p) => p.characteristicUuid == characteristicUuid)
.where((p) => p.success == true)
.map((c) => c.value);