Flutter SDK for GoodReads's Service.
Features
- Returns a collection of books available in a valid goodreads clolection.
Getting started
Usage
final api = GoodReadsApi();
final shelf = await api.fetchCollection(
'https://www.goodreads.com/review/list/34074576?shelf=All',
page: 1,
);
for (final entry in shelf.entries) {
print(entry.title);
}