selectInitialBackgroundPrefetchUrls function

  1. @visibleForTesting
List<String> selectInitialBackgroundPrefetchUrls(
  1. List<String> orderedUrls
)

Implementation

@visibleForTesting
List<String> selectInitialBackgroundPrefetchUrls(List<String> orderedUrls) {
  if (orderedUrls.length <= _kInitialBackgroundPrefetchLimit) {
    return List<String>.from(orderedUrls);
  }
  return orderedUrls.sublist(0, _kInitialBackgroundPrefetchLimit);
}