Enough-Software / enough_mail

IMAP, POP3 and SMTP clients for Dart developers. Contains both low level as well as a high level API.
Mozilla Public License 2.0
100 stars 56 forks source link

paginate message fetching #196

Closed Tzanou123 closed 2 years ago

Tzanou123 commented 2 years ago

Hello,

Is there any way to paginate the messages fetched from a mailbox ?

Thanks

Tzanou123 commented 2 years ago

I found my way :

client.fetchMessages(
      MessageSequence.fromRange(start, end),
      "BODY[]",
  )