InheritedStateMVC<T extends StatefulWidget, U extends InheritedWidget> constructor
InheritedStateMVC<T extends StatefulWidget, U extends InheritedWidget> ({
- required U inheritedBuilder(
- Widget child
- ControllerMVC? controller,
Implementation
InheritedStateMVC({
required this.inheritedBuilder,
ControllerMVC? controller,
}) : super(controller) {
// Initialize the InheritedWidget State object
initInheritedState<U>(inheritedBuilder);
}