ao3 0.0.12
ao3: ^0.0.12 copied to clipboard
This is an unofficial API that lets you access some of AO3's (archiveofourown.org) data through dart.
example/example.dart
import 'package:ao3/ao3.dart';
void main() async{
Work work = Work(4830032);
await work.reload();
print(work.chapters[0].title);
}