stackMap property

Map<String, int>? stackMap

Gets the index of the current state of each module in the stack

Implementation

Map<String, int>? get stackMap {
  ReduxStateInner innerState = store.states.value;
  return innerState.stackMap;
}