operator + method

dynamic operator +(
  1. T item
)

Implementation

operator +(T item) {
  _list.add(item);
}