deleteMailbox method

Future<Mailbox> deleteMailbox(
  1. Mailbox box
)

Removes the specified mailbox

box the mailbox to be deleted

Implementation

Future<Mailbox> deleteMailbox(Mailbox box) {
  return _sendMailboxCommand('DELETE', box);
}