markSyncedUp method

FutureOr<void> markSyncedUp({
  1. OpLogEntry<StockReconciliationModel>? entry,
  2. String? clientReferenceId,
  3. int? id,
  4. bool? nonRecoverableError,
})
inherited

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,
  );
}