networkjson 0.1.5 copy "networkjson: ^0.1.5" to clipboard
networkjson: ^0.1.5 copied to clipboard

Dart (Flutter) Network JSON fetch and manipulation library, the package consists of JsonObject and JsonArray and handlers to get JsonArray from objects and JsonObject from arrays.

example/example.dart

import 'dart:async';

import 'package:networkjson/networkjson.dart';

void main() {
  Future<JsonObject> jsonRequest = JsonObject.get("https://jsonplaceholder.typicode.com/todos/1");
  jsonRequest.then((json) {
    print(json["title"]);
  });
}
1
likes
30
pub points
0%
popularity

Publisher

unverified uploader

Dart (Flutter) Network JSON fetch and manipulation library, the package consists of JsonObject and JsonArray and handlers to get JsonArray from objects and JsonObject from arrays.

Repository
View/report issues

License

MIT (LICENSE)

Dependencies

http

More

Packages that depend on networkjson