Save method

Future<TMessage> Save()
Saves the response in the Drafts folder. Calling this method results in a call to EWS.

Implementation

Future<TMessage> Save() async {
  return (await this.InternalCreate(null, MessageDisposition.SaveOnly))[0]
      as TMessage;
}