main function

void main()

Função principal do programa

Implementation

void main() {
  runApp(
    MultiProvider(
      providers: [
        ChangeNotifierProvider(
          create: (context) => Collection(),
        ),
        ChangeNotifierProvider(create: (context) => GameplayLoop())
      ],
      child: MyApp(),
    ),
  );
}