Skip to content

glacion/jsonplaceholder-dart

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.

About

API Binding library for jsonplaceholder.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages