remove method

  1. @override
bool remove(
  1. Object? object
)

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

@override
bool remove(Object? object) {
  if (super.remove(object)) {
    notifyListeners();
    return true;
  }
  return false;
}