clearList method

void clearList()

Clears all data from the list and notifies listeners

Implementation

void clearList() {
  list.clear();
  notifyListeners();
}