updateShouldNotify method

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

Currently rebuild is triggered only if isSearchMode changed.

Implementation

@override
bool updateShouldNotify(AppBarWithSearchSwitch oldWidget) {
  return isSearchMode != oldWidget.isSearchMode;
}