value property

  1. @override
List<Map<String, Object?>> get value
override

The current value of the field.

Implementation

@override
List<Map<String, Object?>> get value => forms.map((e) => e.toMap()).toList();
set value (covariant Object? value)
covariantinherited

The current value of the field.

Implementation

set value(covariant Object? value) {
  _value = parser(value);
}