isbn_searcher 1.0.0
isbn_searcher: ^1.0.0 copied to clipboard
ISBN lookup library for Dart and Flutter using Google Books and isbnsearch.org.
example/main.dart
import 'package:isbn_searcher/isbn_searcher.dart';
Future<void> main() async {
final book = await Rest.getGoogleBookInfoAsync('9789750845987');
final bookFromHtml = await Rest.getISBNSearchHtmlAsync('9789750845987');
[book, bookFromHtml].printElements();
final htmlTable = [book, bookFromHtml].makeHtmlTable();
print(htmlTable);
}