dio 5.2.0 dio: ^5.2.0 copied to clipboard
A powerful HTTP package for Dart/Flutter, which supports Global settings, Interceptors, FormData, Aborting and canceling a request, Files uploading and downloading, Requests timeout, Custom adapters, etc.
import 'package:dio/dio.dart';
/// More examples see https://github.com/cfug/dio/blob/main/example
void main() async {
final dio = Dio();
final response = await dio.get('https://pub.dev');
print(response.data);
}