value property
The current value of the field.
Implementation
@override
List<Map<String, dynamic>>? get value =>
[for (final form in forms) form.toMap()];
The current value of the field.
Implementation
set value(covariant Object? value) {
_value = parser(value);
onChanged?.call(_value);
}