update method
The update
method updates an existing entity.
Implementation
@override
@mustCallSuper
FutureOr<void> update(D entity, {bool createOpLog = true}) async {
if (createOpLog) await createOplogEntry(entity, DataOperation.update);
}
The update
method updates an existing entity.
@override
@mustCallSuper
FutureOr<void> update(D entity, {bool createOpLog = true}) async {
if (createOpLog) await createOplogEntry(entity, DataOperation.update);
}