clear method

  1. @override
void clear()
override

Removes all objects from this list; the length of the list becomes zero.

The list must be growable.

Implementation

@override
void clear() {
  super.value.clear();
  if (notifyOnChangeList) {
    notifyListeners();
  }
}