Delete method

Future<void> Delete(
  1. DeleteMode deleteMode, [
  2. bool suppressReadReceipts = false
])
Deletes the item. Calling this method results in a call to EWS. The deletion mode. Whether to suppress read receipts

Implementation

Future<void> Delete(DeleteMode deleteMode,
    [bool suppressReadReceipts = false]) {
  return this.InternalDelete(deleteMode, null, null, suppressReadReceipts);
}