dx_http 0.0.1-beta copy "dx_http: ^0.0.1-beta" to clipboard
dx_http: ^0.0.1-beta copied to clipboard

A Network Interface Package.

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 [issue tracker][tracker].

[tracker]:

License #

MIT License