FetchRequest constructor
FetchRequest({ - FetchRequestAction? action,
- dynamic body,
- String? cache,
- FetchRequestCredential? credentials,
- String? integrity,
- bool? keepalive,
- String? method,
- String? mode,
- String? redirect,
- String? referrer,
- ReferrerPolicy? referrerPolicy,
- WebUri? url,
})
Implementation
FetchRequest({
FetchRequestAction? action,
this.body,
this.cache,
this.credentials,
this.headers,
this.integrity,
this.keepalive,
this.method,
this.mode,
this.redirect,
this.referrer,
this.referrerPolicy,
this.url,
}) : action = action ?? FetchRequestAction.PROCEED;