add method

void add(
  1. T entry
)

Add an entry

Implementation

void add(T entry) {
  _list.add(entry);
  _fireWatchers();
}