dequeue method
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);
}