intermediate

This commit is contained in:
Fabian Freund
2025-01-07 00:06:31 +01:00
parent ea0880b97a
commit 4a2191b01d
84 changed files with 2655 additions and 1383 deletions
+5 -2
View File
@@ -9,9 +9,12 @@ class WebPageInfo {
final String? title;
final BrowserIcon? favicon;
bool get isPageInfoComplete =>
(title?.isNotEmpty ?? false) && favicon != null;
WebPageInfo({
required this.url,
required this.title,
required this.favicon,
this.title,
this.favicon,
});
}