MockVelo<T> constructor

MockVelo<T>(
  1. T initialState
)

Creates a new MockVelo with the given initial state.

The initialState will be added to the state history automatically.

Implementation

MockVelo(super.initialState) {
  _addInitialStateToHistory();
}