DevToolsState<S> constructor

DevToolsState<S>(
  1. List<S> computedStates,
  2. List stagedActions,
  3. int currentPosition
)

Create the DevToolsState in the simplest possible way

Implementation

DevToolsState(
  this.computedStates,
  this.stagedActions,
  this.currentPosition,
);