Constructors
ResponseBody (Stream <Uint8List > stream , int ? statusCode , String ? statusMessage , bool isRedirect = false , List <RedirectRecord > ? redirects } )
ResponseBody.fromBytes (List <int > bytes , int ? statusCode , String ? statusMessage , bool isRedirect = false } )
ResponseBody.fromString (String text , int ? statusCode , String ? statusMessage , bool isRedirect = false } )
Properties
read / write
hashCode
→ int
The hash code for this object. [...]
read-only, inherited
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-only, inherited
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