notifyClients method

bool notifyClients()
inherited

In harmony with Flutter's own API there's also a notifyClients() function Rebuild the InheritedWidget of the 'closes' InheritedStateX object if any.

Implementation

bool notifyClients() {
  final inherited = useInherited;
  if (inherited) {
    setState(() {});
  }
  return inherited;
}