updateShouldNotify method

  1. @protected
bool updateShouldNotify(
  1. Set<TModel?> old,
  2. Set<TModel?> current
)
inherited

Whether to notify listeners or not when state changes

Implementation

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