HistoryBuilder<T> constructor

HistoryBuilder<T>(
  1. RootState<T> root, [
  2. Map<State, Iterable<State>> entries = const {}
])

Implementation

HistoryBuilder(RootState<T> root,
    [Map<State, Iterable<State>> entries = const {}])
    : super(root, Map<State<T>, Iterable<State<T>>>.of(entries.cast()));