uidThreadMessages method

Future<SequenceNode> uidThreadMessages({
  1. String method = 'ORDEREDSUBJECT',
  2. String charset = 'UTF-8',
  3. required DateTime since,
})

Requests the UIDs of message threads starting on since using the given method (defaults to ORDEREDSUBJECT) and charset (defaults to UTF-8).

You can use this method when the server announces the THREAD capability, in which it also announces the supported methods, e.g. THREAD=ORDEREDSUBJECT THREAD=REFERENCES. Compare ServerInfo.supportsThreading and ServerInfo.supportedThreadingMethods.

Implementation

Future<SequenceNode> uidThreadMessages(
    {String method = 'ORDEREDSUBJECT',
    String charset = 'UTF-8',
    required DateTime since}) {
  return threadMessages(
      method: method, charset: charset, since: since, threadUids: true);
}