updateShouldNotify method

  1. @override
bool updateShouldNotify(
  1. Value previousState,
  2. Value newState
)

Called when a provider is rebuilt. Used for providers to not notify their listeners if the exposed value did not change.

Implementation

@override
bool updateShouldNotify(Value previousState, Value newState) {
  return true;
}