inheritedNeedsBuild method
Call the build() functions of all the dependencies of the _InheritedWidget widget.
Implementation
void inheritedNeedsBuild([Object? object]) {
if (object != null) {
dataObject = object;
}
notifyClients();
}
Call the build() functions of all the dependencies of the _InheritedWidget widget.
void inheritedNeedsBuild([Object? object]) {
if (object != null) {
dataObject = object;
}
notifyClients();
}