webfetch 0.0.17 copy "webfetch: ^0.0.17" to clipboard
webfetch: ^0.0.17 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.

example/main.dart

import 'package:webfetch/webfetch.dart';

void main() async {
  final formData = FormData();
  formData.append('name', 'John Doe');
  formData.append('age', '42');

  final blob = Blob(['Hello, World!'], type: 'text/plain');
  formData.append('file', blob, 'hello.txt');

  final headers = Headers();
  headers.append('x-multiple', 'Value 1');
  headers.append('x-multiple', 'Value 2');

  final response = await fetch(
    'https://webhook.site/1d7e5914-6113-4568-a7bc-7d30199cba97',
    method: "POST",
    body: formData,
    keepalive: true,
    headers: headers,
  );

  print(response.body);
  print(response.body);

  print(await response.text());
}
3
likes
140
pub points
53%
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