dio_http 5.0.4
dio_http: ^5.0.4 copied to clipboard
A powerful Http client for Dart, which supports Interceptors, FormData, Request Cancellation, File Downloading, Timeout etc.
import 'package:dio_http/dio_http.dart';
/// More examples see https://github.com/dart-tools/dio_http/tree/master/example
void main() async {
var dio = Dio();
final response = await dio.get('https://google.com');
print(response.data);
}