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

Dart 1 only

Write concise JSON API clients

teja_http_json #

Write concise JSON API clients

Usage #

Get request #

final JsonResponse resp =
    await client.get('http://localhost:8080/api/list');
print(resp.body);

Post request #

final JsonResponse resp = await client
    .post('http://localhost:8080/api/map', body: {'posting': 'hello'});
print(resp.body);

Put request #

final JsonResponse resp = await client
    .put('http://localhost:8080/api/map', body: {'putting': 'hello'});
print(resp.body);

Delete request #

final JsonResponse resp =
    await client.delete('http://localhost:8080/api/map/123?query=why');
print(resp.body);
0
likes
30
pub points
0%
popularity

Publisher

unverified uploader

Write concise JSON API clients

Repository (GitHub)
View/report issues

License

BSD-3-Clause (LICENSE)

Dependencies

http, jaguar_serializer

More

Packages that depend on teja_http_json