unregisteredValue property

  1. @override
  2. @protected
List<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
List<E> get unregisteredValue {
  return super.unregisteredValue as List<E>;
}