main function
void
main()
Implementation
void main() async {
runApp(
MultiBlocProvider(
providers: [
BlocProvider<StandardScreenResponseCubit>(
create: (context) => StandardScreenResponseCubit(),
),
BlocProvider<ApiResponseCubit>(
create: (context) => ApiResponseCubit(
BlocProvider.of<StandardScreenResponseCubit>(context),
),
),
],
child: const MyApp(),
),
);
}