stream property

Returns Stream of StateOfMind which reflects the StateMachines complete state each time a state change occurs.

Remember that with Nested States a FSM can be in multiple states.

Implementation

//
/// Remember that with Nested States a FSM
/// can be in multiple states.
Stream<StateOfMind> get stream => _controller.stream;