Books_finder
1.0.0
Eine Flutter -App, um Bücherinformationen und Bewertungen aus guten Lesevorgängen zu erhalten, indem Sie das ISBN -Codefoto mit Firebase Machine Learning Kit aufnehmen
Future <Book> get_review(String imagePath) async {
var info = new List<String>();
String isbn = await decode(imagePath);
//print(isbn);
String url = "https://www.goodreads.com/book/isbn?FORMAT=json&key=[###your goodreads API here###]&isbn=" + isbn;
final response = await http.get(url);
var book = new Book(" "," "," "," "," "," "," ");
if (response.statusCode == 200) {

