TestResponseBody class Null safety

Instances of these type represent the body of a TestResponse.

Constructors

TestResponseBody(HttpClientResponse response)
Creates a new instance of this type.

Properties

bytes Stream<List<int>>
The stream of bytes to decode.
read-onlyinherited
contentType ContentType?
Determines how bytes get decoded.
read-only
decodedType Type
The type of data bytes was decoded into.
read-onlyinherited
hasBeenDecoded bool
Whether or not bytes have been decoded yet.
read-onlyinherited
hashCode int
The hash code for this object.
read-onlyinherited
isEmpty bool
Whether or not bytes is empty.
read-only
originalBytes List<int>?
The raw bytes of this request body.
read-onlyinherited
retainOriginalBytes bool
Whether or not bytes are available as a list after decoding has occurred.
read / writeinherited
runtimeType Type
A representation of the runtime type of the object.
read-onlyinherited

Methods

as<T>() → T
Returns previously decoded object as T.
inherited
decode<T>() Future<T>
Decodes this object's bytes as T.
inherited
noSuchMethod(Invocation invocation) → dynamic
Invoked when a non-existent method or property is accessed.
inherited
toString() String
A string representation of this object.
override

Operators

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