setupInjections function
Future<void>
setupInjections(
)
Implementation
Future<void> setupInjections() async {
print("setupInjections");
// await setupFlavorConfig();
// Bloc.observer = const AppBlocObserver();
WidgetsFlutterBinding.ensureInitialized();
EasyLocalization.ensureInitialized();
await setupDateTime();
await setupSharedPrefsInjections();
// await setupHydratedStorage();
await setupSystemSingletons();
// await setupFirebase();
// await setupFirebaseMessaging();
await setupAppHelpers();
await setupNetworking();
await setupScreenSettings();
await setupDataSource();
await setupUseCases();
await setupBlocs();
}