clear method

void clear()

Clears all elements in the queue.

Example

final q = Ref(Queue.of([1, 2, 3]));
q.clear(); // queue: []

Implementation

void clear() {
  $.clear();
  notifyChange();
}