isAnyRecordsLoading method

  1. @visibleForTesting
  2. @protected
bool isAnyRecordsLoading()
inherited

Tells whether any records are being loaded at the moment.

Implementation

@visibleForTesting
@protected
bool isAnyRecordsLoading() {
  return _loadingDescribers.values
      .where((loadDescriber) => !loadDescriber.completer.isCompleted)
      .isNotEmpty;
}