clear method Null safety
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;
}
Removes all objects from this list; the length of the list becomes zero.
The list must be growable.
void clear() {
this.length = 0;
}