http_interop_http 0.7.0 copy "http_interop_http: ^0.7.0" to clipboard
http_interop_http: ^0.7.0 copied to clipboard

Interop-compatible wrapper over the standard Dart http package

http_interop_http #

Interop-compatible wrapper over the standard Dart http package.

import 'package:http_interop/http_interop.dart';
import 'package:http_interop_http/http_interop_http.dart';

Future<void> main() async {
  final handler = DisposableHandler();
  final request = Request('get', Uri.parse('https://example.com'));
  final response = await handler.handle(request);
  print(response.statusCode);
  print(response.headers);
  print(response.body);
}
0
likes
140
pub points
64%
popularity

Publisher

verified publisherkarapetov.com

Interop-compatible wrapper over the standard Dart http package

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

http, http_interop

More

Packages that depend on http_interop_http