StreamedResponse class
An HTTP response where the response body is received asynchronously after the headers have been received.
- Inheritance
-
- Object
- BaseResponse
- StreamedResponse
- Available extensions
Constructors
Properties
- contentLength → int?
-
The size of the response body, in bytes.
finalinherited
- hashCode → int
-
The hash code for this object.
no setterinherited
-
headers
→ Map<
String, String> -
The HTTP headers returned by the server.
finalinherited
-
headersSplitValues
→ Map<
String, List< String> > -
Available on BaseResponse, provided by the HeadersWithSplitValues extension
The HTTP headers returned by the server.no setter - isRedirect → bool
-
finalinherited
- persistentConnection → bool
-
Whether the server requested that a persistent connection be maintained.
finalinherited
- reasonPhrase → String?
-
The reason phrase associated with the status code.
finalinherited
- request → BaseRequest?
-
The (frozen) request that triggered this response.
finalinherited
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
- statusCode → int
-
The HTTP status code for this response.
finalinherited
- stream → ByteStream
-
The stream from which the response body data can be read.
final
Methods
-
copyWith(
{int? statusCode, BaseRequest? request, Map< String, String> ? headers, bool? isRedirect, bool? persistentConnection, String? reasonPhrase, String? body, Stream<List< ? stream, int? contentLength}) → BaseResponseint> > -
Available on BaseResponse, provided by the BaseResponseCopyWith extension
Creates a new instance of BaseResponse based of onthis. It copies all the properties and overrides the ones sent via parameters. -
copyWith(
{Stream< List< ? stream, int? statusCode, int? contentLength, BaseRequest? request, Map<int> >String, String> ? headers, bool? isRedirect, bool? persistentConnection, String? reasonPhrase}) → StreamedResponse -
Available on StreamedResponse, provided by the StreamedResponseCopyWith extension
Creates a new instance of StreamedResponse based of onthis. It copies all the properties and overrides the ones sent via parameters. -
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