retrieve method

Future<MimeMessage> retrieve(
  1. int? messageId
)

Downloads the message with the specified messageId

Implementation

Future<MimeMessage> retrieve(int? messageId) {
  return sendCommand(PopRetrieveCommand(messageId));
}