value property

List<T?>? value
inherited

The current value of the control.

Implementation

T? get value => _value;
  1. @override
void value=(List<T?>? value)
override

Sets the value of the FormArray.

It accepts an array that matches the structure of the control. It accepts both super-sets and sub-sets of the array.

Implementation

@override
set value(List<T?>? value) {
  updateValue(value);
}