repeatQuery method
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);
}