main function

void main()

Implementation

void main() async {
  WidgetsFlutterBinding.ensureInitialized();
  ThemeModel theme = ThemeModel();
  theme.initTheme();
  await ShpUi().initPrefs();
  Bloc.observer = SimpleBlocObserver();
  runApp(MyApp(theme: theme));
}