InheritedStateMVC<T extends StatefulWidget, U extends InheritedWidget> constructor

InheritedStateMVC<T extends StatefulWidget, U extends InheritedWidget>({
  1. required U inheritedBuilder(
    1. Widget child
    ),
  2. ControllerMVC? controller,
})

Implementation

InheritedStateMVC({
  required this.inheritedBuilder,
  ControllerMVC? controller,
}) : super(controller) {
  // Initialize the InheritedWidget State object
  initInheritedState<U>(inheritedBuilder);
}