initCore function

dynamic initCore()

Implementation

initCore() async {
  Analytics();
  put<InterceptorsWrapper>(httpInterceptors);
  put<DioCacheInterceptor>(httpCache);
  put<Dio>(
    () => httpClient(
      [
        get<InterceptorsWrapper>(),
        get<DioCacheInterceptor>(),
      ],
    ),
  );
}