remove method

  1. @override
Future<bool> remove(
  1. Object? value
)
override

Async removes a single instance of value from the queue

Implementation

@override
Future<bool> remove(Object? value) async {
  return Future<bool>(() => _collective.remove(value));
}