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();
}
Clears all elements in the queue.
final q = Ref(Queue.of([1, 2, 3]));
q.clear(); // queue: []
void clear() {
$.clear();
notifyChange();
}