updateShouldNotify method

  1. @override
bool updateShouldNotify(
  1. covariant MediaQuery oldWidget
)
override

Whether dependents should rebuild when this widget updates.

Implementation

@override
bool updateShouldNotify(covariant MediaQuery oldWidget) {
  return oldWidget.data != data;
}