isolated_http_client 1.7.0 copy "isolated_http_client: ^1.7.0" to clipboard
isolated_http_client: ^1.7.0 copied to clipboard

discontinuedreplaced by: vox_http

http clint with requests cancelation and isolate decoding in separated isolate

A library for Dart developers.

Created from templates made available by Stagehand under a BSD-style license.

Usage #

A simple usage example:

import 'package:isolated_http_client/isolated_http_client.dart';

main() {
  await Executor().warmUp();
    final client = HttpClient(log: true);
    final r = await client.get(
        host: 'https://postman-echo.com/get?foo1=bar1&foo2=bar2');
    print(r.body);
    final r2 =
        await client.post(host: 'https://postman-echo.com/post', body: '123');
    print(r2.body);
}
11
likes
50
pub points
38%
popularity

Publisher

verified publisherrenesanse.net

http clint with requests cancelation and isolate decoding in separated isolate

Repository (GitHub)
View/report issues

License

MIT (LICENSE)

Dependencies

cross_file, http, http_parser, shared_preferences, worker_manager

More

Packages that depend on isolated_http_client