fetch_api 2.0.0-wasm copy "fetch_api: ^2.0.0-wasm" to clipboard
fetch_api: ^2.0.0-wasm copied to clipboard

JavaScript bindings for Fetch API, flexible HTTP requests, redirects, streaming and more.

example/fetch_api_example.dart

import 'package:fetch_api/fetch_api.dart';


void main() async {
  // Simple cors request
  final response = await fetch(
    'https://api.restful-api.dev/objects/1',
    FetchOptions(
      mode: RequestMode.cors,
    ),
  );

  print(await response.text());
}
7
likes
0
pub points
85%
popularity

Publisher

verified publishernull.moe

JavaScript bindings for Fetch API, flexible HTTP requests, redirects, streaming and more.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

web

More

Packages that depend on fetch_api