chore: dart format

This commit is contained in:
edde746
2026-04-24 14:19:07 +02:00
parent 2479e1faaa
commit 2b59de91c7
22 changed files with 66 additions and 151 deletions
+2 -5
View File
@@ -12,9 +12,6 @@ class AnimeIds {
const AnimeIds({this.mal, this.anilist, this.simkl});
factory AnimeIds.fromFribb(FribbMappingRow row) => AnimeIds(
mal: row.malId,
anilist: row.anilistId,
simkl: row.simklId,
);
factory AnimeIds.fromFribb(FribbMappingRow row) =>
AnimeIds(mal: row.malId, anilist: row.anilistId, simkl: row.simklId);
}