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() {
  value.clear();
  notifyListeners();
}