0 purchases
dx http
DxHttp #
DxHttp is a HTTP Client for Flutter. It is a wrapper around the http package.
Usage #
A simple usage example:
import 'package:dxhttp/dxhttp.dart';
main() async {
var response = await DxHttp.get('https://example.com/whatsit/create',
queryParameters: {'name': 'doodle', 'color': 'blue'});
print("Response status: ${response.statusCode}");
print("Response body: ${response.body}");
}
copied to clipboard
Features and bugs #
Please file feature requests and bugs at the [issue tracker][tracker].
[tracker]:
License #
MIT License
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.