value property

T? value

The value field is the most current value from the state stream. If everything is done right, this should basically never be null, you should provide initial value to the state stream from the implementation of the bloc.

Implementation

T? get value => _value;