state property

T state

Implementation

T get state {
  return stateNotifier.value;
}
void state=(T state)

Implementation

set state(T state) {
  stateNotifier.value = state;
}