value property

T? value

The current value of the StateBloc.

Implementation

T? get value {
  return _value;
}
void value=(T? value)

Updates the value of the StateBloc.

Implementation

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