isAnyRecordsLoading method
Tells whether any records are being loaded at the moment.
Implementation
@visibleForTesting
@protected
bool isAnyRecordsLoading() {
return _loadingDescribers.values
.where((loadDescriber) => !loadDescriber.completer.isCompleted)
.isNotEmpty;
}