add<T> method

void add<T>(
  1. T t
)

Implementation

void add<T>(T t) {
  _values.add(t);
}