moveMessage method
Moves the specified message
to the given target
folder
Implementation
Future<MoveResult> moveMessage(MimeMessage message, Mailbox target) {
return _incomingMailClient.moveMessages(
MessageSequence.fromMessage(message), target);
}