didChangeDependencies method

  1. @override
void didChangeDependencies()
inherited

Called when a dependency of this State object changes.

For example, if the previous call to build referenced an InheritedWidget that later changed, the framework would call this method to notify this object about the change.

This method is also called immediately after initState. It is safe to call BuildContext.dependOnInheritedWidgetOfExactType from this method.

Subclasses rarely override this method because the framework always calls build after a dependency changes. Some subclasses do override this method because they need to do some expensive work (e.g., network fetches) when their dependencies change, and that work would be too expensive to do for every build.

Implementation

@override
void didChangeDependencies() {
  _parent = PrefService.of(context, listen: false);

  // Check if we already have a BasePrefService
  if (_parent == null) {
    throw FlutterError(
        'No PrefService widget found in the tree. Unable to load settings');
  }

  if (widget.cache && _cache == null) {
    _createCache();
  }
  super.didChangeDependencies();
}