add method

void add(
  1. T control
)

Appends control to the end of the array.

Implementation

void add(T control) {
  final current = List<T>.of(fields.value);
  current.add(control);
  fields.value = current;
  _arrayDirty.value = true;
}