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
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.