matchingStatus property

Stream<bool>? get matchingStatus

A stream of matching status changes, or null if the matching listener was not enabled when the publisher was declared. ⚠️ Unbounded, like every push stream here — but this is an edge-signal channel, not a data channel: it carries transitions, not traffic, so there is deliberately no bounded form of it.

Implementation

Stream<bool>? get matchingStatus => _matchingController?.stream;