t_client 0.2.0
t_client: ^0.2.0 copied to clipboard
A lightweight Dart HTTP client library, designed like Dio, supporting request/response interceptors, upload/download progress, cancel tokens, timeout management, and multipart file upload/download.
import 'dart:io';
import 'package:t_client/src/types/method.dart';
import 'package:t_client/t_client.dart';
void main() async {
final client = TClient();
final cancelT = CancelToken();
}