dio 3.0.2-dev.1 copy "dio: ^3.0.2-dev.1" to clipboard
dio: ^3.0.2-dev.1 copied to clipboard

outdated

A powerful Http client for Dart, which supports Interceptors, FormData, Request Cancellation, File Downloading, Timeout etc.

example/dio.dart

import 'package:dio/dio.dart';

/// More examples see https://github.com/flutterchina/dio/tree/master/example
main() async {
  var dio = Dio();
  Response response = await dio.get("https://google.com");
  print(response.data);
}
6860
likes
0
pub points
100%
popularity

Publisher

verified publisherflutter.cn

A powerful Http client for Dart, which supports Interceptors, FormData, Request Cancellation, File Downloading, Timeout etc.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

http_parser, path

More

Packages that depend on dio