addAll method

void addAll(
  1. List<int> data
)

Add a list

Implementation

void addAll(List<int> data) {
  buffer!.addAll(data);
}