unregisteredValue property

  1. @override
  2. @protected
Set<E> unregisteredValue
override

Read the current value without calling register

Used to prevent unnecessary calls to register in internal methods such as copyValue, shouldNotify, or methods that do not return a value

Implementation

@override
@protected
Set<E> get unregisteredValue {
  return super.unregisteredValue as Set<E>;
}