buildF method

  1. @override
  2. @protected
Widget buildF(
  1. BuildContext context
)
inherited

A separate State object containing the app's InheritedWidget and a separate State object containing the app's buildIn() function

Implementation

@override
@protected
Widget buildF(BuildContext context) {
  _buildInState?.setState(() {}); // Calls the buildIn() function
  return _StateStatefulWidget(key: _key, state: _inheritedState!);
}