audio_book_bay 0.0.4 audio_book_bay: ^0.0.4 copied to clipboard
An easy to use SDK for interacting with the popular AudioBookBay Service. It provides a simple interface for fetching and parsing data from the service
Flutter SDK for AudioBookBay's Service.
Features #
- Returns a List of audio-books based on a search request.
- Fetches download link for an audio-book.
Getting started #
Usage #
final abbApi = AudioBookBayApi();
final searchResult = await abbApi.find('harry potter');
final detailUrl = searchResult.books.first.detailsUrl;
final downloadLink = await abbApi.findDownloadLink(detailUrl);