removeDelivered method

void removeDelivered(
  1. List<String> processIds
)

Implementation

void removeDelivered(List<String> processIds) {
  for (final id in processIds) {
    final hook = _pendingHooks[id];
    if (hook != null && hook.responseAttachmentSent) {
      _pendingHooks.remove(id);
    }
  }
}