flutter_network_inspector 0.1.2 copy "flutter_network_inspector: ^0.1.2" to clipboard
flutter_network_inspector: ^0.1.2 copied to clipboard

This package helps you to monitor networks calls done using the http package with in the app. if you are using the dart's http package and not using any third party packages, you an use this library t [...]

This package helps you to monitor networks calls done using the http package with in the app.

Features #

App Screenshot

Getting started #

Create a client for your network calls, which is an object of FNIClient. Then use this client to do all network calls.

 final client = FNICLient();

 final postResponse = await client.post(
    Uri.parse('https://jsonplaceholder.typicode.com/posts'),
    headers: {'Content-Type': 'application/json'},
    body: '{"title": "foo", "body": "bar", "userId": 1}',
 );
 doLog('Final Response: ${postResponse.body}');

Usage #

 final client = FNICLient();

 final postResponse = await client.post(
    Uri.parse('https://jsonplaceholder.typicode.com/posts'),
    headers: {'Content-Type': 'application/json'},
    body: '{"title": "foo", "body": "bar", "userId": 1}',
 );
 doLog('Final Response: ${postResponse.body}');

flutter_network_inspector #

flutter_network_inspector #

flutter_network_inspector #

flutter_network_inspector #

flutter_network_inspector #

flutter_network_inspector #

flutter_network_inspector #

flutter_network_inspector #

flutter_network_inspector #

flutter_network_inspector #

flutter_network_inspector #

flutter_network_inspector #

flutter_network_inspector #

17
likes
0
points
37
downloads

Publisher

verified publisherflutterthemer.blogspot.com

Weekly Downloads

This package helps you to monitor networks calls done using the http package with in the app. if you are using the dart's http package and not using any third party packages, you an use this library to track all your http requests.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter, http

More

Packages that depend on flutter_network_inspector