curl_dio_logger_interceptor 0.0.1
curl_dio_logger_interceptor: ^0.0.1 copied to clipboard
convert dio request to curl command.
curl_dio_logger_interceptor #
Language: English | 简体中文
Convert dio request into a cURL command.
Get started #
Install #
Add the dio
package to your
pubspec dependencies.
Before you upgrade: Breaking changes might happen in major and minor versions of packages.
See the Migration Guide for the complete breaking changes list.
Super simple to use #
import 'package:dio/dio.dart';
final dio = Dio();
void getHttp() async {
final response = await dio.get('https://dart.dev');
print(response);
}