ModelMVC constructor

ModelMVC([
  1. StateMVC<StatefulWidget>? state
])

Optionally supply a State object to 'link' to this object. Thus, assigned as 'current' StateMVC for this object

Implementation

ModelMVC([StateMVC? state]) : super() {
  _pushState(state);
}