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