updateShouldNotifyDependent method

  1. @override
bool updateShouldNotifyDependent(
  1. covariant InheritedModel<OudsThemeAspect> oldWidget,
  2. 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;
}