updateShouldNotifyDependent method
- covariant InheritedModel<
OudsThemeAspect> oldWidget, - Set<
OudsThemeAspect> dependencies
override
Return true if the changes between this model and oldWidget
match any
of the dependencies
.
Implementation
@override
bool updateShouldNotifyDependent(
InheritedModel<OudsThemeAspect> oldWidget,
Set<OudsThemeAspect> dependencies,
) {
if (oldWidget is OudsTheme) {
if (themeMode != oldWidget.themeMode && dependencies.contains(OudsThemeAspect.themeMode)) {
return true;
}
if (onColoredSurface != oldWidget.onColoredSurface && dependencies.contains(OudsThemeAspect.onColoredSurface)) {
return true;
}
}
return false;
}