chore: dart format
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user