SendAndSaveCopy method

Future<CalendarActionResults> SendAndSaveCopy()
override
Sends this response ans saves a copy in the Sent Items folder. Calling this method results in a call to EWS.

Implementation

Future<CalendarActionResults> SendAndSaveCopy() async {
  return new CalendarActionResults(
      await this.InternalCreate(null, MessageDisposition.SendAndSaveCopy));
}