enqueue method
Adds a new synchronization operation to the queue for its user.
Implementation
Future<void> enqueue(DatumSyncOperation<T> operation) async {
await localAdapter.addPendingOperation(operation.userId, operation);
}
Adds a new synchronization operation to the queue for its user.
Future<void> enqueue(DatumSyncOperation<T> operation) async {
await localAdapter.addPendingOperation(operation.userId, operation);
}