ResponseBody class

Constructors

ResponseBody(Stream<Uint8List> stream, int statusCode, {Map<String, List<String>> headers = const {}, String? statusMessage, bool isRedirect = false, List<RedirectRecord>? redirects})
ResponseBody.fromBytes(List<int> bytes, int statusCode, {Map<String, List<String>> headers = const {}, String? statusMessage, bool isRedirect = false})
ResponseBody.fromString(String text, int statusCode, {Map<String, List<String>> headers = const {}, String? statusMessage, bool isRedirect = false})

Properties

extra Map<String, dynamic>
read / write
hashCode int
The hash code for this object.
read-onlyinherited
headers Map<String, List<String>>
The response headers.
read / write
isRedirect bool
Whether this response is a redirect.
final
redirects List<RedirectRecord>?
read / write
runtimeType Type
A representation of the runtime type of the object.
read-onlyinherited
statusCode int
HTTP status code.
read / write
statusMessage String?
Returns the reason phrase associated with the status code. The reason phrase must be set before the body is written to. Setting the reason phrase after writing to the body.
read / write
stream Stream<Uint8List>
The response stream.
read / write

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