ElementValueChange<E, V> constructor
ElementValueChange<E, V> ({
- required E element,
- required V? after,
- V? before,
Creates an ElementValueChange recording a change to a specific element.
Parameters:
element
: The element that was changedafter
: The new value after the changebefore
: The previous value before the change (optional)
Implementation
ElementValueChange({required this.element, required this.after, this.before});