Field class
Named pair for a form request.
@POST("/post")
Future<String> example(
@Field() int foo,
@Field("bar") String barbar},
)
Calling with foo.example("Bob Smith", "President")
yields a request body of
foo=Bob+Smith&bar=President
.
- Annotations
-
- @immutable
Properties
Methods
-
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