NeatState<S> constructor

NeatState<S>({
  1. required S initialState,
  2. void onChangeCallback(
    1. Change<S> change
    )?,
})

Implementation

NeatState({
  required S initialState,
  this.onChangeCallback,
}) : super(initialState);