value property

NimbostratusDocumentSnapshot<T>? value
inherited

The current value of the StateBloc.

Implementation

T? get value {
  return _value;
}
void value=(NimbostratusDocumentSnapshot<T>? value)
inherited

Updates the value of the StateBloc.

Implementation

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