add method
      
void
add(
    
- T element
Adds an element to the list and notifies listeners.
Implementation
void add(T element) {
  _rawList.add(element);
  _listChanged();
}Adds an element to the list and notifies listeners.
void add(T element) {
  _rawList.add(element);
  _listChanged();
}