internalOnlyActiveStore property

AFStore get internalOnlyActiveStore

The redux store, which contains the application state, NOT FOR PUBLIC USE.

WARNING: You should never access this. AFib's testing and prototyping systems sometimes operate in contexts with a specially modified store, without a store at all, or with a special dispatcher. If you try to access the store directly, or dispatch actions on it directly, you will compromise these systems.

Implementation

AFStore get internalOnlyActiveStore {
  return internalOnlyStoreEntry(activeConceptualStore).store!;
}