riddhahttp 1.0.1 copy "riddhahttp: ^1.0.1" to clipboard
riddhahttp: ^1.0.1 copied to clipboard

A Package over Flutter Http package which enables to make http calls in an easier way with minimal code.

RiddhaHttp is a http service over http package.

Features #

Easy http methods as services.

Getting started #

Future-based http service library for making HTTP requests.

Simple to consume HTTP resources. It's multi-platform, and supports mobile, desktop, and the browser.

Using #

The easiest way to use this library is via the top-level functions. They allow you to make individual HTTP requests with minimal hassle:

import 'package:riddhahttp/riddhahttp.dart';

//Post Method
String url = '';
var result = await  RiddhaHttpService().get(url);
print('Result: ${result}');


//Post Method
String url = '';
var result = await  RiddhaHttpService().post(url,{});
print('Result: ${result}');
2
likes
90
pub points
22%
popularity

Publisher

unverified uploader

A Package over Flutter Http package which enables to make http calls in an easier way with minimal code.

Repository (GitHub)
View/report issues

Documentation

API reference

License

unknown (LICENSE)

Dependencies

flutter, http

More

Packages that depend on riddhahttp