You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Add support for tracing network requests from Instabug to services like Datadog and New Relic ([#21](https://github.com/Instabug/Instabug-Dart-http-Adapter/pull/21)).
8
+
9
+
## [2.4.0] - 7/05/2024
10
+
11
+
### Added
12
+
13
+
- Add support for Instabug Flutter SDK v12 and v13 ([#17](https://github.com/Instabug/Instabug-Dart-http-Adapter/pull/17)).
14
+
15
+
## [2.3.0] - 3/11/2022
16
+
17
+
- Adds support for MultipartRequest.
18
+
19
+
## [2.2.1] - 2/8/2022
20
+
21
+
- Bumps [instabug_flutter](https://pub.dev/packages/instabug_flutter) to v11
22
+
23
+
## [2.2.0] - 11/4/2022
24
+
25
+
- Adds support for logging network requests using `send` method.
26
+
27
+
## [2.1.0] - 5/1/2022
28
+
29
+
- Fixes network log compilation error.
30
+
- Adds payload size for network log.
31
+
32
+
## [2.0.0] - 30/11/2021
33
+
34
+
- Upgrades to null safety.
35
+
36
+
## [1.0.0] - 29/7/2019
37
+
38
+
- Adds implementation for the instabug_http_client library which supports Instabug network logging for the dart library: http.
A dart package to support Instabug network logging for the external dart [http](https://pub.dev/packages/http) package.
4
+
5
+
## Getting Started
6
+
7
+
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.
8
+
9
+
### Installation
10
+
11
+
1. Add the dependency to your project `pubspec.yml`:
12
+
13
+
```yaml
14
+
dependencies:
15
+
instabug_http_client:
16
+
```
17
+
18
+
2. Install the package by running the following command.
19
+
20
+
```bash
21
+
flutter packages get
22
+
```
23
+
24
+
### Usage
25
+
26
+
To enable logging, use the custom http client provided by Instabug:
27
+
28
+
```dart
29
+
final client = InstabugHttpClient();
30
+
```
31
+
32
+
Then proceed to use the package normally:
33
+
34
+
```dart
35
+
final response = await client.get(Uri.parse(URL));
0 commit comments