add method
void
add(
- 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;
}