value property
The current value of the StateBloc
.
Implementation
T? get value {
return _value;
}
Updates the value of the StateBloc
.
Implementation
set value(T? value) {
add(value);
}
The current value of the StateBloc
.
T? get value {
return _value;
}
Updates the value of the StateBloc
.
set value(T? value) {
add(value);
}