clear method Null safety

void clear ()
override

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

The list must be growable.

Implementation

void clear() {
  this.length = 0;
}