A dart package to support Instabug network logging for the external dart http package.
You can choose to attach all your network requests data to the Instabug reports being sent to the dashboard. See the details below on how to enable the feature for the http
package.
- Add the dependency to your project
pubspec.yml
:
dependencies:
instabug_http_client:
- Install the package by running the following command.
flutter packages get
To enable logging, use the custom http client provided by Instabug:
final client = InstabugHttpClient();
Then proceed to use the package normally:
final response = await client.get(Uri.parse(URL));