├── .github └── workflows │ └── dart.yml ├── .gitignore ├── .metadata ├── CHANGELOG.md ├── LICENSE ├── README.md ├── analysis_options.yaml ├── example └── main.dart ├── lib ├── jikan_api.dart └── src │ ├── jikan.dart │ └── model │ ├── anime │ ├── anime.dart │ ├── anime.g.dart │ ├── anime_meta.dart │ ├── anime_meta.g.dart │ ├── episode.dart │ ├── episode.g.dart │ ├── promo.dart │ └── promo.g.dart │ ├── character │ ├── character.dart │ ├── character.g.dart │ ├── character_meta.dart │ └── character_meta.g.dart │ ├── common │ ├── archive.dart │ ├── archive.g.dart │ ├── article.dart │ ├── article.g.dart │ ├── entry_meta.dart │ ├── entry_meta.g.dart │ ├── forum.dart │ ├── forum.g.dart │ ├── meta.dart │ ├── meta.g.dart │ ├── picture.dart │ ├── picture.g.dart │ ├── reactions.dart │ ├── reactions.g.dart │ ├── recommendation.dart │ ├── recommendation.g.dart │ ├── relation.dart │ ├── relation.g.dart │ ├── review.dart │ ├── review.g.dart │ ├── score.dart │ ├── score.g.dart │ ├── stats.dart │ ├── stats.g.dart │ ├── user_update.dart │ └── user_update.g.dart │ ├── constants.dart │ ├── genre │ ├── genre.dart │ ├── genre.g.dart │ └── genre_list.dart │ ├── magazine │ ├── magazine.dart │ └── magazine.g.dart │ ├── manga │ ├── manga.dart │ ├── manga.g.dart │ ├── manga_meta.dart │ └── manga_meta.g.dart │ ├── person │ ├── person.dart │ ├── person.g.dart │ ├── person_meta.dart │ ├── person_meta.g.dart │ ├── voice_actor.dart │ └── voice_actor.g.dart │ ├── producer │ ├── producer.dart │ └── producer.g.dart │ ├── serializers.dart │ ├── serializers.g.dart │ ├── user │ ├── entry_update.dart │ ├── entry_update.g.dart │ ├── favorite.dart │ ├── favorite.g.dart │ ├── favorites.dart │ ├── favorites.g.dart │ ├── friend.dart │ ├── friend.g.dart │ ├── history.dart │ ├── history.g.dart │ ├── user_meta.dart │ ├── user_meta.g.dart │ ├── user_profile.dart │ ├── user_profile.g.dart │ ├── user_recommendation.dart │ ├── user_recommendation.g.dart │ ├── user_review.dart │ ├── user_review.g.dart │ ├── user_stats.dart │ └── user_stats.g.dart │ └── watch │ ├── watch_episode.dart │ ├── watch_episode.g.dart │ ├── watch_promo.dart │ └── watch_promo.g.dart ├── pubspec.yaml └── test └── jikan_api_test.dart /.github/workflows/dart.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javoeria/jikan-dart/HEAD/.github/workflows/dart.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javoeria/jikan-dart/HEAD/.gitignore -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javoeria/jikan-dart/HEAD/.metadata -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javoeria/jikan-dart/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javoeria/jikan-dart/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javoeria/jikan-dart/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- 1 | include: package:lints/recommended.yaml 2 | -------------------------------------------------------------------------------- /example/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javoeria/jikan-dart/HEAD/example/main.dart -------------------------------------------------------------------------------- /lib/jikan_api.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javoeria/jikan-dart/HEAD/lib/jikan_api.dart -------------------------------------------------------------------------------- /lib/src/jikan.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javoeria/jikan-dart/HEAD/lib/src/jikan.dart -------------------------------------------------------------------------------- /lib/src/model/anime/anime.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javoeria/jikan-dart/HEAD/lib/src/model/anime/anime.dart -------------------------------------------------------------------------------- /lib/src/model/anime/anime.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javoeria/jikan-dart/HEAD/lib/src/model/anime/anime.g.dart -------------------------------------------------------------------------------- /lib/src/model/anime/anime_meta.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javoeria/jikan-dart/HEAD/lib/src/model/anime/anime_meta.dart -------------------------------------------------------------------------------- /lib/src/model/anime/anime_meta.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javoeria/jikan-dart/HEAD/lib/src/model/anime/anime_meta.g.dart -------------------------------------------------------------------------------- /lib/src/model/anime/episode.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javoeria/jikan-dart/HEAD/lib/src/model/anime/episode.dart -------------------------------------------------------------------------------- /lib/src/model/anime/episode.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javoeria/jikan-dart/HEAD/lib/src/model/anime/episode.g.dart -------------------------------------------------------------------------------- /lib/src/model/anime/promo.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javoeria/jikan-dart/HEAD/lib/src/model/anime/promo.dart -------------------------------------------------------------------------------- /lib/src/model/anime/promo.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javoeria/jikan-dart/HEAD/lib/src/model/anime/promo.g.dart -------------------------------------------------------------------------------- /lib/src/model/character/character.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javoeria/jikan-dart/HEAD/lib/src/model/character/character.dart -------------------------------------------------------------------------------- /lib/src/model/character/character.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javoeria/jikan-dart/HEAD/lib/src/model/character/character.g.dart -------------------------------------------------------------------------------- /lib/src/model/character/character_meta.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javoeria/jikan-dart/HEAD/lib/src/model/character/character_meta.dart -------------------------------------------------------------------------------- /lib/src/model/character/character_meta.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javoeria/jikan-dart/HEAD/lib/src/model/character/character_meta.g.dart -------------------------------------------------------------------------------- /lib/src/model/common/archive.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javoeria/jikan-dart/HEAD/lib/src/model/common/archive.dart -------------------------------------------------------------------------------- /lib/src/model/common/archive.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javoeria/jikan-dart/HEAD/lib/src/model/common/archive.g.dart -------------------------------------------------------------------------------- /lib/src/model/common/article.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javoeria/jikan-dart/HEAD/lib/src/model/common/article.dart -------------------------------------------------------------------------------- /lib/src/model/common/article.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javoeria/jikan-dart/HEAD/lib/src/model/common/article.g.dart -------------------------------------------------------------------------------- /lib/src/model/common/entry_meta.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javoeria/jikan-dart/HEAD/lib/src/model/common/entry_meta.dart -------------------------------------------------------------------------------- /lib/src/model/common/entry_meta.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javoeria/jikan-dart/HEAD/lib/src/model/common/entry_meta.g.dart -------------------------------------------------------------------------------- /lib/src/model/common/forum.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javoeria/jikan-dart/HEAD/lib/src/model/common/forum.dart -------------------------------------------------------------------------------- /lib/src/model/common/forum.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javoeria/jikan-dart/HEAD/lib/src/model/common/forum.g.dart -------------------------------------------------------------------------------- /lib/src/model/common/meta.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javoeria/jikan-dart/HEAD/lib/src/model/common/meta.dart -------------------------------------------------------------------------------- /lib/src/model/common/meta.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javoeria/jikan-dart/HEAD/lib/src/model/common/meta.g.dart -------------------------------------------------------------------------------- /lib/src/model/common/picture.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javoeria/jikan-dart/HEAD/lib/src/model/common/picture.dart -------------------------------------------------------------------------------- /lib/src/model/common/picture.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javoeria/jikan-dart/HEAD/lib/src/model/common/picture.g.dart -------------------------------------------------------------------------------- /lib/src/model/common/reactions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javoeria/jikan-dart/HEAD/lib/src/model/common/reactions.dart -------------------------------------------------------------------------------- /lib/src/model/common/reactions.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javoeria/jikan-dart/HEAD/lib/src/model/common/reactions.g.dart -------------------------------------------------------------------------------- /lib/src/model/common/recommendation.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javoeria/jikan-dart/HEAD/lib/src/model/common/recommendation.dart -------------------------------------------------------------------------------- /lib/src/model/common/recommendation.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javoeria/jikan-dart/HEAD/lib/src/model/common/recommendation.g.dart -------------------------------------------------------------------------------- /lib/src/model/common/relation.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javoeria/jikan-dart/HEAD/lib/src/model/common/relation.dart -------------------------------------------------------------------------------- /lib/src/model/common/relation.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javoeria/jikan-dart/HEAD/lib/src/model/common/relation.g.dart -------------------------------------------------------------------------------- /lib/src/model/common/review.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javoeria/jikan-dart/HEAD/lib/src/model/common/review.dart -------------------------------------------------------------------------------- /lib/src/model/common/review.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javoeria/jikan-dart/HEAD/lib/src/model/common/review.g.dart -------------------------------------------------------------------------------- /lib/src/model/common/score.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javoeria/jikan-dart/HEAD/lib/src/model/common/score.dart -------------------------------------------------------------------------------- /lib/src/model/common/score.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javoeria/jikan-dart/HEAD/lib/src/model/common/score.g.dart -------------------------------------------------------------------------------- /lib/src/model/common/stats.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javoeria/jikan-dart/HEAD/lib/src/model/common/stats.dart -------------------------------------------------------------------------------- /lib/src/model/common/stats.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javoeria/jikan-dart/HEAD/lib/src/model/common/stats.g.dart -------------------------------------------------------------------------------- /lib/src/model/common/user_update.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javoeria/jikan-dart/HEAD/lib/src/model/common/user_update.dart -------------------------------------------------------------------------------- /lib/src/model/common/user_update.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javoeria/jikan-dart/HEAD/lib/src/model/common/user_update.g.dart -------------------------------------------------------------------------------- /lib/src/model/constants.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javoeria/jikan-dart/HEAD/lib/src/model/constants.dart -------------------------------------------------------------------------------- /lib/src/model/genre/genre.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javoeria/jikan-dart/HEAD/lib/src/model/genre/genre.dart -------------------------------------------------------------------------------- /lib/src/model/genre/genre.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javoeria/jikan-dart/HEAD/lib/src/model/genre/genre.g.dart -------------------------------------------------------------------------------- /lib/src/model/genre/genre_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javoeria/jikan-dart/HEAD/lib/src/model/genre/genre_list.dart -------------------------------------------------------------------------------- /lib/src/model/magazine/magazine.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javoeria/jikan-dart/HEAD/lib/src/model/magazine/magazine.dart -------------------------------------------------------------------------------- /lib/src/model/magazine/magazine.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javoeria/jikan-dart/HEAD/lib/src/model/magazine/magazine.g.dart -------------------------------------------------------------------------------- /lib/src/model/manga/manga.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javoeria/jikan-dart/HEAD/lib/src/model/manga/manga.dart -------------------------------------------------------------------------------- /lib/src/model/manga/manga.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javoeria/jikan-dart/HEAD/lib/src/model/manga/manga.g.dart -------------------------------------------------------------------------------- /lib/src/model/manga/manga_meta.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javoeria/jikan-dart/HEAD/lib/src/model/manga/manga_meta.dart -------------------------------------------------------------------------------- /lib/src/model/manga/manga_meta.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javoeria/jikan-dart/HEAD/lib/src/model/manga/manga_meta.g.dart -------------------------------------------------------------------------------- /lib/src/model/person/person.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javoeria/jikan-dart/HEAD/lib/src/model/person/person.dart -------------------------------------------------------------------------------- /lib/src/model/person/person.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javoeria/jikan-dart/HEAD/lib/src/model/person/person.g.dart -------------------------------------------------------------------------------- /lib/src/model/person/person_meta.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javoeria/jikan-dart/HEAD/lib/src/model/person/person_meta.dart -------------------------------------------------------------------------------- /lib/src/model/person/person_meta.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javoeria/jikan-dart/HEAD/lib/src/model/person/person_meta.g.dart -------------------------------------------------------------------------------- /lib/src/model/person/voice_actor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javoeria/jikan-dart/HEAD/lib/src/model/person/voice_actor.dart -------------------------------------------------------------------------------- /lib/src/model/person/voice_actor.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javoeria/jikan-dart/HEAD/lib/src/model/person/voice_actor.g.dart -------------------------------------------------------------------------------- /lib/src/model/producer/producer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javoeria/jikan-dart/HEAD/lib/src/model/producer/producer.dart -------------------------------------------------------------------------------- /lib/src/model/producer/producer.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javoeria/jikan-dart/HEAD/lib/src/model/producer/producer.g.dart -------------------------------------------------------------------------------- /lib/src/model/serializers.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javoeria/jikan-dart/HEAD/lib/src/model/serializers.dart -------------------------------------------------------------------------------- /lib/src/model/serializers.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javoeria/jikan-dart/HEAD/lib/src/model/serializers.g.dart -------------------------------------------------------------------------------- /lib/src/model/user/entry_update.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javoeria/jikan-dart/HEAD/lib/src/model/user/entry_update.dart -------------------------------------------------------------------------------- /lib/src/model/user/entry_update.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javoeria/jikan-dart/HEAD/lib/src/model/user/entry_update.g.dart -------------------------------------------------------------------------------- /lib/src/model/user/favorite.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javoeria/jikan-dart/HEAD/lib/src/model/user/favorite.dart -------------------------------------------------------------------------------- /lib/src/model/user/favorite.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javoeria/jikan-dart/HEAD/lib/src/model/user/favorite.g.dart -------------------------------------------------------------------------------- /lib/src/model/user/favorites.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javoeria/jikan-dart/HEAD/lib/src/model/user/favorites.dart -------------------------------------------------------------------------------- /lib/src/model/user/favorites.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javoeria/jikan-dart/HEAD/lib/src/model/user/favorites.g.dart -------------------------------------------------------------------------------- /lib/src/model/user/friend.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javoeria/jikan-dart/HEAD/lib/src/model/user/friend.dart -------------------------------------------------------------------------------- /lib/src/model/user/friend.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javoeria/jikan-dart/HEAD/lib/src/model/user/friend.g.dart -------------------------------------------------------------------------------- /lib/src/model/user/history.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javoeria/jikan-dart/HEAD/lib/src/model/user/history.dart -------------------------------------------------------------------------------- /lib/src/model/user/history.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javoeria/jikan-dart/HEAD/lib/src/model/user/history.g.dart -------------------------------------------------------------------------------- /lib/src/model/user/user_meta.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javoeria/jikan-dart/HEAD/lib/src/model/user/user_meta.dart -------------------------------------------------------------------------------- /lib/src/model/user/user_meta.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javoeria/jikan-dart/HEAD/lib/src/model/user/user_meta.g.dart -------------------------------------------------------------------------------- /lib/src/model/user/user_profile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javoeria/jikan-dart/HEAD/lib/src/model/user/user_profile.dart -------------------------------------------------------------------------------- /lib/src/model/user/user_profile.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javoeria/jikan-dart/HEAD/lib/src/model/user/user_profile.g.dart -------------------------------------------------------------------------------- /lib/src/model/user/user_recommendation.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javoeria/jikan-dart/HEAD/lib/src/model/user/user_recommendation.dart -------------------------------------------------------------------------------- /lib/src/model/user/user_recommendation.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javoeria/jikan-dart/HEAD/lib/src/model/user/user_recommendation.g.dart -------------------------------------------------------------------------------- /lib/src/model/user/user_review.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javoeria/jikan-dart/HEAD/lib/src/model/user/user_review.dart -------------------------------------------------------------------------------- /lib/src/model/user/user_review.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javoeria/jikan-dart/HEAD/lib/src/model/user/user_review.g.dart -------------------------------------------------------------------------------- /lib/src/model/user/user_stats.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javoeria/jikan-dart/HEAD/lib/src/model/user/user_stats.dart -------------------------------------------------------------------------------- /lib/src/model/user/user_stats.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javoeria/jikan-dart/HEAD/lib/src/model/user/user_stats.g.dart -------------------------------------------------------------------------------- /lib/src/model/watch/watch_episode.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javoeria/jikan-dart/HEAD/lib/src/model/watch/watch_episode.dart -------------------------------------------------------------------------------- /lib/src/model/watch/watch_episode.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javoeria/jikan-dart/HEAD/lib/src/model/watch/watch_episode.g.dart -------------------------------------------------------------------------------- /lib/src/model/watch/watch_promo.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javoeria/jikan-dart/HEAD/lib/src/model/watch/watch_promo.dart -------------------------------------------------------------------------------- /lib/src/model/watch/watch_promo.g.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javoeria/jikan-dart/HEAD/lib/src/model/watch/watch_promo.g.dart -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javoeria/jikan-dart/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /test/jikan_api_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javoeria/jikan-dart/HEAD/test/jikan_api_test.dart --------------------------------------------------------------------------------