updated method

  1. @protected
void updated(
  1. covariant InheritedComponent oldComponent
)

Called during build when the component has changed.

Implementation

@protected
void updated(covariant InheritedComponent oldComponent) {
  if (component.updateShouldNotify(oldComponent)) {
    notifyClients(oldComponent);
  }
}