value property
The current value of the field.
Implementation
@override
List<Map<String, Object?>> get value => forms.map((e) => e.toMap()).toList();
The current value of the field.
Implementation
set value(covariant Object? value) {
_value = parser(value);
}