remove method - Queue class - dart:collection library (original) (raw)
remove abstract method
bool remove(
- Object? value )
Removes a single instance of value
from the queue.
Returns true
if a value was removed, or false
if the queue contained no element equal to value
.
Implementation
bool remove(Object? value);