A library that provides API bindings for JSONPlaceholder.
A simple usage example:
import 'package:jsonplaceholder/json_placeholder.dart';
main(List<String> args) async {
JSONPlaceholder api = JSONPlaceholder();
var posts = api.getPosts();
await for (Post post in posts) print(post.toString());
api.close();
}
Please file feature requests and bugs at the issue tracker.