fetchx 0.0.3+alpha copy "fetchx: ^0.0.3+alpha" to clipboard
fetchx: ^0.0.3+alpha copied to clipboard

outdated

Fetchx is a simple, fast, and secure HTTP client for Dart. It leverages extensions to allow using url-like strings to make http requests.

Fetchx #

A dart/flutter package for making HTTP requests.

Features #

  • Get
  • Post
  • Put
  • Delete
  • Patch

Usage #

To use this package add this to your pubspec.yaml

dependencies:
  fetchx: ^0.0.3+alpha

Then import the package

import 'package:fetchx/fetchx.dart';

Get #


final response = await "https://jsonplaceholder.typicode.com/posts/1".get();

Post #


final response = await "https://jsonplaceholder.typicode.com/posts".post({
  "title": "foo",
  "body": "bar",
  "userId": 1
});

Put #


final response = await "https://jsonplaceholder.typicode.com/posts/1".put({
  "title": "foo",
  "body": "bar",
  "userId": 1
});

Delete #


final response = await "https://jsonplaceholder.typicode.com/posts/1".delete();

Patch #


final response = await "https://jsonplaceholder.typicode.com/posts/1".patch({
  "title": "foo"
});

6
likes
0
pub points
10%
popularity

Publisher

unverified uploader

Fetchx is a simple, fast, and secure HTTP client for Dart. It leverages extensions to allow using url-like strings to make http requests.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

More

Packages that depend on fetchx