RequestContext class

Processing context of a request to the server.

Constructors

RequestContext()

Properties

exception ↔ dynamic
getter/setter pair
hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

getAttribute<T>(String name) → T?
Get attribute of a specified name.
getInput<I>(String api) → I?
Get the input DTO of a specified API name.
getOutput<O>(String api) → O
Get the output DTO of a specified API name.
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
setAttribute(String name, Object output) → void
Set attribute of a specified name.
setInput(String api, Object input) → void
Set the input DTO of a specified API name.
setOutput(String api, Object output) → void
Set the output DTO of a specified API name.
toString() String
A string representation of this object.
inherited

Operators

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