add method

void add(
  1. T element
)

Adds an element to the list and notifies listeners.

Implementation

void add(T element) {
  _rawList.add(element);
  _listChanged();
}