reverseWith method
Reverses the result and includes the new sequence from the given CopyUidResult.
Implementation
DeleteResult reverseWith(UidResponseCode? result) {
if (result?.targetSequence != null) {
return DeleteResult(isUndoable, action, originalSequence, targetMailbox,
result!.targetSequence, originalMailbox);
}
return reverse();
}