RequestBody class Null safety

Objects that represent a request body, and can be decoded into Dart objects.

Every instance of Request has a Request.body property of this type. Use decode to convert the contents of this object into a Dart type (e.g, Map or List).

See also CodecRegistry for how decoding occurs.

Inheritance

Constructors

RequestBody(HttpRequest request)
Creates a new instance of this type.

Properties

bytes Stream<List<int>>
The stream of bytes to decode.
read-onlyoverride
contentType ContentType?
Determines how bytes get decoded.
read-onlyoverride
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-onlyoverride
isFormData bool
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.
inherited

Operators

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

Static Properties

maxSize int
The maximum size of a request body.
read / write