Response class

This Fetch API interface represents the response to a request.

Implemented types
Available extensions
Annotations
  • @JS()
  • @staticInterop

Constructors

Response([Object? body, ResponseInit? init])
factory

Properties

arrayBuffer Future<ByteBuffer> Function()

Available on Body, provided by the Body$Typings extension

getter/setter pair
blob Future<Blob> Function()

Available on Body, provided by the Body$Typings extension

getter/setter pair
body ReadableStream<Uint8List>?

Available on Body, provided by the Body$Typings extension

A simple getter used to expose a ReadableStream of the body contents.
no setter
bodyUsed bool

Available on Body, provided by the Body$Typings extension

Stores a Boolean that declares whether the body has been used in a response yet.
no setter
clone Response Function()

Available on Response, provided by the Response$Typings extension

getter/setter pair
formData Future<FormData> Function()

Available on Body, provided by the Body$Typings extension

getter/setter pair
hashCode int
The hash code for this object.
no setterinherited
headers Headers

Available on Response, provided by the Response$Typings extension

no setter
json Future Function()

Available on Body, provided by the Body$Typings extension

getter/setter pair
ok bool

Available on Response, provided by the Response$Typings extension

no setter
redirected bool

Available on Response, provided by the Response$Typings extension

no setter
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
status num

Available on Response, provided by the Response$Typings extension

no setter
statusText String

Available on Response, provided by the Response$Typings extension

no setter
text Future<String> Function()

Available on Body, provided by the Body$Typings extension

getter/setter pair
type ResponseType

Available on Response, provided by the Response$Typings extension

no setter
url String

Available on Response, provided by the Response$Typings extension

no setter

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Properties

error Response Function()
no getter
json Response Function([Object?, ResponseInit?])
no getter
redirect Response Function(Object, [num?])
no getter