Application constructor
Application(
- AsyncValueGetter initApp, {
- required ApplicationConfig appConfig,
The entry point into the framework. Takes an initApp function which will
be called after framework is initialized and a List of Modules
Implementation
Application(
this.initApp, {
required this.appConfig,
}) {
instance = this;
}