books_finder 3.0.0-nullsafety copy "books_finder: ^3.0.0-nullsafety" to clipboard
books_finder: ^3.0.0-nullsafety copied to clipboard

outdated

A library to help on the search for books on google books api

example/books_finder_example.dart

//  Copyright 2020 Bruno D'Luka

import 'package:books_finder/books_finder.dart';

void main(List<String> args) async {
  final books = await queryBooks(
    'twilight',
    maxResults: 3,
    printType: PrintType.books,
    orderBy: OrderBy.relevance,
  );
  books.forEach((book) {
    final info = book.info;
    print('$info\n');
  });
}
24
likes
0
pub points
63%
popularity

Publisher

verified publisherbdlukaa.dev

A library to help on the search for books on google books api

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

http

More

Packages that depend on books_finder