HttpParameterType enum
Type of parameter in rest client
Values
- header → const HttpParameterType
-
@Header
const HttpParameterType('Header')
- path → const HttpParameterType
-
@Path
const HttpParameterType('Path')
- body → const HttpParameterType
-
@Body
const HttpParameterType('Body')
- extras → const HttpParameterType
-
@Extras
const HttpParameterType('Extras')
- query → const HttpParameterType
-
@Query
const HttpParameterType('Query')
- part → const HttpParameterType
-
@Part
const HttpParameterType('Part')
- formData → const HttpParameterType
-
@Part
const HttpParameterType('Part')
Properties
- hashCode → int
-
The hash code for this object.
no setterinherited
- index → int
-
A numeric identifier for the enumerated value.
no setterinherited
- isBody → bool
-
Is element used as body
no setter
- isPart → bool
-
Is element used in multipart
no setter
- name → String
-
Available on Enum, provided by the EnumName extension
The name of the enum value.no setter - runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
- type → String
-
Parameter type
final
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
Constants
-
values
→ const List<
HttpParameterType> - A constant List of the values in this enum, in order of their declaration.