AppMVC constructor

AppMVC({
  1. AppConMVC? con,
  2. Key? key,
})

Simple constructor. Calls the initApp() function.

Implementation

AppMVC({this.con, Key? key})
    : _appState = _AppState(con),
      super(key: key);