main function

void main()

The main entrypoint for the application.

This function creates a BlocProvider that provides the LocaleCubit to all of its descendants. It then runs the QissatHirfatiApp widget.

Implementation

void main() {
  runApp(
    BlocProvider(create: (_) => LocaleCubit(), child: const QissatHirfatiApp()),
  );
}