SignalOptions API docs
Signal options which increase the behaviour of the signal.
Constructor
const SignalOptions({
String? name,
bool equals = false,
ValueComparator<T?>? comparator = identical,
bool autoDispose = true,
});
equals
Whether to check the equality of the value with the == equality.
Preventing signal updates if the new value is equal to the previous.
When this value is true, the comparator is not used.