updateShouldNotifyDependent method
bool
updateShouldNotifyDependent(
- covariant SharedValueInheritedModel oldWidget,
- Set<
int> dependencies
override
Return true if the changes between this model and oldWidget match any
of the dependencies.
Implementation
@override
bool updateShouldNotifyDependent(
SharedValueInheritedModel oldWidget,
Set<int> dependencies,
) {
return dependencies.any(changedKeys.contains);
}