shouldNotify method

  1. @override
  2. @protected
bool shouldNotify(
  1. Iterable<E> oldValue
)
override

Check if the value has changed

Implementation

@override
@protected
bool shouldNotify(Iterable<E> oldValue) =>
    !const SetEquality().equals(unregisteredValue, oldValue as Set<E>);