everything build but untested & migration not finished

This commit is contained in:
Fabian Freund
2024-10-09 13:27:42 +02:00
parent 37d2c84d7f
commit 2c71eeb670
132 changed files with 3790 additions and 2817 deletions
@@ -21,14 +21,14 @@ class BrowserIcon with FastEquatable {
final image =
await tryDecodeImage(bytes).then((image) => image!.toEquatable());
return BrowserIcon._(
return BrowserIcon(
image: image,
dominantColor: dominantColor,
source: source,
);
}
BrowserIcon._({
BrowserIcon({
required this.image,
required this.dominantColor,
required this.source,