Update method

Future<void> Update()
Applies the local changes that have been made to this folder. Calling this method results in a call to EWS.

Implementation

Future<void> Update() async {
  if (this.IsDirty) {
    if (this.PropertyBag.GetIsUpdateCallNecessary()) {
      await this.Service.UpdateFolder(this);
    }
  }
}