markSyncedUp method
Implementation
FutureOr<void> markSyncedUp({
OpLogEntry<D>? entry,
String? clientReferenceId,
int? id,
bool? nonRecoverableError,
}) async {
await opLogManager.markSyncUp(
entry: entry,
clientReferenceId: clientReferenceId,
id: id,
nonRecoverableError: nonRecoverableError,
);
}