repeatQuery method

void repeatQuery([
  1. LoadingKey loadingKey = defaultLoadingKey
])
inherited

Initiates a repeat of a failed loading attempt identified by the loadingKey key.

Implementation

void repeatQuery([LoadingKey loadingKey = defaultLoadingKey]) {
  final loadDesciber = _loadingDescribers[loadingKey];
  if (loadDesciber == null) return;
  loadRecords(loadDesciber.query, loadingKey: loadingKey);
}