bool remove(
Object object
)

Remove 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.

Source

/**
 * Remove 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].
 */
bool remove(Object object);