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}");
}

Features and bugs

Please file feature requests and bugs at the tracker.

tracker:

License

MIT License

Libraries

dx_http