onEdge property

Stream<SignalEdge> onEdge

Broadcast stream of signal edges.

Basically the onEvent stream without the timestamp.

Implementation

Stream<SignalEdge> get onEdge => onEvent.map((e) => e.edge);