dio 4.0.0-prev1 dio: ^4.0.0-prev1 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
void main() async {
var dio = Dio();
final response = await dio.get('https://google.com');
print(response.data);
}