initStore method

void initStore({
  1. bool isDebug = false,
})

Initialize store

Implementation

void initStore({
  bool isDebug = false,
}) {
  List<ReduxBloc> list = [];
  list.addAll(reduxBlocList);

  GlobalStore().initStore(list, isDebug: isDebug);
}