rawValue property

List<T?> rawValue

Gets the value of the FormArray, including any disabled controls.

Retrieves all values regardless of disabled status.

Implementation

List<T?> get rawValue =>
    _controls.map<T?>((control) => control.value).toList();