getPendingOperations method

Future<List<DatumSyncOperation<T>>> getPendingOperations(
  1. String userId
)

Returns a list of pending synchronization operations for the user.

Implementation

Future<List<DatumSyncOperation<T>>> getPendingOperations(String userId) async {
  _ensureInitialized();
  return _queueManager.getPending(userId);
}