addData method

void addData(
  1. List<T> newData
)

Implementation

void addData(List<T> newData) {
  _dataList.addAll(newData);
}