Where is the correct place to start application initialization in flutter?
The project has a lot of initial initialization, without which the project will not work (logging, database initialization (floor), getIt (services), and a bunch more) I can put all this friendly initialization into one method, let's call it initApp() Where…