getPending method
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);
}
Retrieves a list of all pending synchronization operations for a given userId.
Future<List<DatumSyncOperation<T>>> getPending(String userId) async {
  return localAdapter.getPendingOperations(userId);
}