value property

T? get value

The current value of the StateBloc.

Implementation

T? get value {
  return _value;
}
set value (T? value)

Updates the value of the StateBloc.

Implementation

set value(T? value) {
  add(value);
}