append method

void append(
  1. List<T> val
)

Implementation

void append(List<T> val) {
  _value.addAll(val);
  _status = AppStatus.success();
  refresh();
}