librivox 0.0.2
librivox: ^0.0.2 copied to clipboard
An easy to use SDK for interacting with the popular librivox Service. It provides a simple interface for fetching and parsing data from the service
example/main.dart
import 'package:librivox/librivox.dart';
void main() async {
final List<LibrivoxItem> results = await LibrivoxApi().searchTitles(
query: 'The Adventures of Sherlock Holmes (version 5)',
);
// for (final result in results) {
// print(result);
// }
final LibrivoxItem result = await LibrivoxApi().getInfo(results.first.id);
print(result);
}