append method

void append(
  1. List<T> itemList,
  2. int count
)

Implementation

void append(List<T> itemList, int count) {
  if (itemList.length == count) {
    totalItemList = itemList;
    return;
  }
  newItemList = itemList;
}