getCachedFaviconUrl method

String? getCachedFaviconUrl(
  1. String url
)

Get the cached favicon URL.

Implementation

String? getCachedFaviconUrl(String url) {
  return getPreference<String?>(key: 'favicon_url/$url', defaultValue: null);
}