Initial commit

This commit is contained in:
2023-02-03 23:33:21 +01:00
commit ee4458d613
147 changed files with 5860 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
class AnimeSearchResult {
const AnimeSearchResult(
this.title,
this.id,
this.episodesTotal,
this.thumbnailUrl,
this.description,
);
/// The title of the anime.
final String title;
/// The id of the anime.
final String id;
/// The URL to a thumbnail image.
final String thumbnailUrl;
/// The amount of total episodes. If null, it means that there is not total amount
/// of episodes set.
final int? episodesTotal;
/// The description of the anime
final String description;
}