HttpMethod enum Null safety
Constructors
- HttpMethod()
-
const
Values
- Connect → const HttpMethod
-
const HttpMethod(0)
- Delete → const HttpMethod
-
const HttpMethod(1)
- Get → const HttpMethod
-
const HttpMethod(2)
- Head → const HttpMethod
-
const HttpMethod(3)
- Options → const HttpMethod
-
const HttpMethod(4)
- Patch → const HttpMethod
-
const HttpMethod(5)
- Post → const HttpMethod
-
const HttpMethod(6)
- Put → const HttpMethod
-
const HttpMethod(7)
- Trace → const HttpMethod
-
const HttpMethod(8)
Properties
Methods
-
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
Constants
-
values
→ const List<
HttpMethod> -
A constant List of the values in this enum, in order of their declaration.
[Connect, Delete, Get, Head, Options, Patch, Post, Put, Trace]