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