prefetch method

void prefetch(
  1. String? url
)

Implementation

void prefetch(String? url) {
  if (url == null || url.isEmpty) return;
  if (_strategy.get(url) != null) return;
  _fetchAndCache(url);
}