change property
void Function(T?)
get
change
Function to perform the change of the data.
Implementation
void Function(T?) get change => (newValue) {
_value = newValue;
_subject.add(newValue);
};