ignoreNotFound property
By default, an attempt to ack a message that does not exist will fail with
a NOT_FOUND error.
With ignore_not_found set to true, the ack will succeed even if the
message does not exist. This is useful for unconditionally acking a
message, even if it is missing or has already been acked.
Implementation
core.bool? ignoreNotFound;