webfetch 0.0.15 copy "webfetch: ^0.0.15" to clipboard
webfetch: ^0.0.15 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
130
pub points
41%
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

Documentation

API reference

License

MIT (LICENSE)

Dependencies

mime, web

More

Packages that depend on webfetch