updateShouldNotify method

  1. @protected
bool updateShouldNotify(
  1. State old,
  2. State current
)
inherited

Whether to notify listeners or not when state changes

Implementation

@protected
bool updateShouldNotify(
  T old,
  T current,
) =>
    !identical(old, current);