jsonplaceholder 1.1.0 copy "jsonplaceholder: ^1.1.0" to clipboard
jsonplaceholder: ^1.1.0 copied to clipboard

outdated

Package that provides API bindings for https://jsonplaceholder.typicode.com/

JSONPlaceholder-Dart #

A library that provides API bindings for JSONPlaceholder.

Usage #

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();
}

Features and bugs #

Please file feature requests and bugs at the issue tracker.

1
likes
0
pub points
0%
popularity

Publisher

unverified uploader

Package that provides API bindings for https://jsonplaceholder.typicode.com/

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

http, meta

More

Packages that depend on jsonplaceholder