get method
Implementation
Future<Map<String, dynamic>> get() async {
// https://api.jikan.moe/v4/anime/32/full
try {
final res = await _dio.get("$animeId/full");
return res.data["data"];
} on DioException catch (e) {
if (e.response!.statusCode == 404) {
throw NotFoundException();
} else {
throw BadResponseException();
}
}
}