add method

void add(
  1. T data
)

Implementation

void add(T data) {
  addAll([data]);
}