remove method

bool remove(
  1. String id
)

Remove a specific request by id.

Implementation

bool remove(String id) {
  final removed = _store.remove(id);
  if (removed) {
    _logger.debug('RequestQueue: removed "$id"');
  }
  return removed;
}