unsubscribeMailbox method

Future<Mailbox> unsubscribeMailbox(
  1. Mailbox box
)

Unsubscribes the specified mailbox.

box the mailbox that is unsubscribed

Implementation

Future<Mailbox> unsubscribeMailbox(Mailbox box) {
  return _sendMailboxCommand('UNSUBSCRIBE', box);
}