updateShouldNotify method

  1. @override
bool updateShouldNotify(
  1. covariant OutletScope oldComponent
)

Whether the framework should notify components that inherit from this component.

Implementation

@override
bool updateShouldNotify(covariant OutletScope oldComponent) {
  return oldComponent.views != views || oldComponent.depth != depth;
}