Application constructor

Application(
  1. AsyncValueGetter initApp, {
  2. 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;
}