store property

ReduxStore store

Implementation

ReduxStore get store {
  if (_store == null) {
    throw Exception('Store is not initialized');
  }

  return _store!;
}