printEvents property
Implement builder() function in your StateX class instead of build() to use the built-in FutureBuilder Widget and built-in InheritedWidget.
Widget builder(BuildContext context) Implement buildF() function in your StateX class instead of the build() function to use the built-in FutureBuilder Widget and not the InheritedWidget.
Widget buildF(BuildContext context) Implement the build() function in your StateX class to NOT use the built-in FutureBuilder Widget and built-in InheritedWidget
Widget build(BuildContext context)
Implementation
/// Implement buildF() function in your StateX class instead of the build() function
/// to use the built-in FutureBuilder Widget and not the InheritedWidget.
///
/// Widget buildF(BuildContext context)
/// Implement the build() function in your StateX class to NOT use
/// the built-in FutureBuilder Widget and built-in InheritedWidget
///
/// Widget build(BuildContext context)
///
// debugPrint the 'event' functions from WidgetsBinding.instance.addObserver(this)
bool get printEvents => _printEvents;