webservice 0.0.6 copy "webservice: ^0.0.6" to clipboard
webservice: ^0.0.6 copied to clipboard

A powerful Http client for Dart, which handles requests. Super easy to use and much more comming soon. Wait for our updates.

WebService #

A powerful Http client for Dart, which handles requests.

Get started #

Add dependency #

dependencies:
  webservice: ^0.0.6

Super simple to use #

import 'package:webservice/webservice.dart';

getData(){
  WebService().get(url: "enter your url", onResponse: (response){
        print('${response.statusCode} ${response.message} ${response.data}');
      });
}

Setting base url or custom headers #

import 'package:webservice/webservice.dart';

getData(){
  WebService webService = WebService();
      webService.baseURL="your base url";
      Map headers={
        "Accept": "application/json",
        "Content-Type": "application/json",
      };
      webService.get(url: "enter your sub url",headers: headers, onResponse: (response){
        print('${response.statusCode} ${response.message} ${response.data}');
      });
}

Support #

If this plugin was useful to you, helped you to deliver your app, saved you a lot of time, or you just want to support the project, I would be very grateful if you buy me a cup of coffee.

10
likes
130
points
54
downloads

Publisher

unverified uploader

Weekly Downloads

A powerful Http client for Dart, which handles requests. Super easy to use and much more comming soon. Wait for our updates.

Homepage

Documentation

API reference

License

MIT (license)

Dependencies

dio, flutter

More

Packages that depend on webservice