reduceValue method
Gets the values of controls as an Iterable.
This method is for internal use only.
Implementation
@override
List<T?>? reduceValue() {
final values = <T?>[];
for (final control in _controls) {
if (control.enabled || disabled) {
values.add(control.value);
}
}
return values;
}