Cache favicons

This commit is contained in:
Juan Gilsanz Polo
2024-02-25 14:42:39 +01:00
parent cf13d76a68
commit c19ffed623
11 changed files with 297 additions and 10 deletions

View File

@@ -0,0 +1,11 @@
class FaviconItem {
final String url;
final String favicon;
final bool isSvg;
const FaviconItem({
required this.url,
required this.favicon,
required this.isSvg,
});
}