getPendingOperations method
Returns a list of pending synchronization operations for the user.
Implementation
Future<List<DatumSyncOperation<T>>> getPendingOperations(String userId) async {
_ensureInitialized();
return _queueManager.getPending(userId);
}