void clear()

Destroys all Views in this container.

Source

void clear() {
  for (var i = this.length - 1; i >= 0; i--) {
    remove(i);
  }
}