qresync property

QResyncParameters? get qresync

Retrieves the quick resync settings of this mailbox

Note that this is only supported when the server supports the QRESYNC extension.

Implementation

QResyncParameters? get qresync =>
    (highestModSequence == null || uidValidity == null)
        ? null
        : QResyncParameters(uidValidity, highestModSequence);