dequeue method

Future<void> dequeue(
  1. String operationId
)

Removes a synchronization operation from the queue by its operationId.

This is typically called after an operation has been successfully synced.

Implementation

Future<void> dequeue(String operationId) async {
  await localAdapter.removePendingOperation(operationId);
}