getPending method

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

Retrieves a list of all pending synchronization operations for a given userId.

Implementation

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