mangadex_library 1.1.3 copy "mangadex_library: ^1.1.3" to clipboard
mangadex_library: ^1.1.3 copied to clipboard

outdated

A mangadex library for dart to facilitate easier access to the Mangadex API (https://api.mangadex.org)

example/mangadex_library_example.dart

import 'package:mangadex_library/mangadex_library.dart';
import 'dart:io';

void main() async {
  print('Enter a search query: ');
  var query = stdin.readLineSync();
  var searchData = await search(query ?? '');
  print('Title of all manga found: \n');
  for (var i = 0; i < searchData!.results.length; i++) {
    print(searchData.results[i].data.attributes.title.en);
  }
}
3
likes
0
pub points
39%
popularity

Publisher

unverified uploader

A mangadex library for dart to facilitate easier access to the Mangadex API (https://api.mangadex.org)

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

http

More

Packages that depend on mangadex_library