onValueReceived property

  1. @override
Stream<List<int>> get onValueReceived
override

this stream emits values:

  • anytime read() is called
  • anytime a notification arrives (if subscribed)

Implementation

@override
Stream<List<int>> get onValueReceived => _notificationController.stream;