webfetch

Creator: coderz1093

Last updated:

0 purchases

TODO
Add to Cart

Description:

webfetch

Web Fetch #
A Dart implementation of the Web Fetch API that allows you to make requests and process results just like using fetch in a browser.
Features #

Supports the Fetch API
Supports the FromData API
Supports the URL API
Supports the URLSearchParams API
Supports the Headers API
Supports the Response API
Supports the Request API

Usage #
In your pubspec.yaml:
dependencies:
webfetch: latest
copied to clipboard
In your Dart code:
import 'package:webfetch/webfetch.dart';

void main() async {
final response = await fetch('https://example.com');
final text = await response.text();
print(text);
}
copied to clipboard
Documentation #
The library is designed to be as close as possible to the Fetch API.
License #
The MIT License (MIT). Please see License File for more information.

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.