delete method

Future<void> delete(
  1. int? messageId
)

Marks the message with the specified messageId as deleted

Implementation

Future<void> delete(int? messageId) {
  return sendCommand(PopDeleteCommand(messageId));
}