add method

void add(
  1. T value
)

Implementation

void add(T value) {
  _list.add(value);
  _checkLength();
}