call method

void call()

Implementation

void call() {
  if (!di.isRegistered<Network>()) {
    di.registerLazySingleton<Network>(() => NetworkUtilImpl())
        // ..registerLazySingleton(() => NetworkService(di()))
        ;
  }
}