retrieveTopLines method

Future<MimeMessage> retrieveTopLines(
  1. int messageId,
  2. int numberOfLines
)

Downloads the first numberOfLines lines of the message with the given messageId

Implementation

Future<MimeMessage> retrieveTopLines(int messageId, int numberOfLines) =>
    sendCommand(PopTopCommand(messageId, numberOfLines));