clear method

void clear()

Remove all entries from this list

Implementation

void clear() {
  if (_list.length > 0) {
    _list.clear();
    _fireWatchers();
  }
}