SaveWithFolderId method
Implementation
Future<TMessage> SaveWithFolderId(FolderId destinationFolderId) async {
EwsUtilities.ValidateParam(destinationFolderId, "destinationFolderId");
return (await this.InternalCreate(
destinationFolderId, MessageDisposition.SaveOnly))[0] as TMessage;
}