0 purchases
webservice
WebService #
A powerful Http client for Dart, which handles requests.
Get started #
Add dependency #
dependencies:
webservice: ^0.0.6
copied to clipboard
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}');
});
}
copied to clipboard
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}');
});
}
copied to clipboard
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.
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.