Some methods are working only with Dart 3.0, see compatibility_layer library for more info.
This package provides JavaScript bindings to Fetch API.
- Full fetch options / request parameters coverage
- Cancel requests via
AbortController
. - Read response
- As text (
String
) - As
Blob
- As
Stream
ofUint8List
- As text (
- Response streaming
- Request streaming (check compatibility)
- Get access to redirect status
- Support non-
200
responses
fetch
and Request
have same options but different semantics, e.g. fetch
's
default mode is no-cors
while Request
is cors
. Therefore options objects
for this function and constructor made as different classes.
For more info about that read MDN docs.