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);
}
+1 -5
View File
@@ -32,9 +32,5 @@ class TraktIds {
tvdb: (json['tvdb'] as num?)?.toInt(),
);
factory TraktIds.fromExternal(PlexExternalIds ids) => TraktIds(
imdb: ids.imdb,
tmdb: ids.tmdb,
tvdb: ids.tvdb,
);
factory TraktIds.fromExternal(PlexExternalIds ids) => TraktIds(imdb: ids.imdb, tmdb: ids.tmdb, tvdb: ids.tvdb);
}