dio 2.1.13 dio: ^2.1.13 copied to clipboard
A powerful Http client for Dart, which supports Interceptors, FormData, Request Cancellation, File Downloading, Timeout etc.
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);
}