fetch_api 1.0.0-dev.1 fetch_api: ^1.0.0-dev.1 copied to clipboard
JavaScript bindings for Fetch API, allowing a flexible HTTP requests.
example/fetch_api_example.dart
import 'package:fetch_api/fetch_api.dart';
void main() async {
final response = await fetch('https://proxy.cors.sh/https://example.com', RequestInit(
mode: RequestMode.cors,
),);
print(await response.text());
}