webfetch 0.0.5 copy "webfetch: ^0.0.5" to clipboard
webfetch: ^0.0.5 copied to clipboard

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

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 #

Usage #

In your pubspec.yaml:

dependencies:
  webfetch: latest

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);
}

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.

3
likes
0
pub points
49%
popularity

Publisher

verified publisherodroe.com

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

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

http, mime

More

Packages that depend on webfetch