ChalonaHttpMethod enum

Enumerador que define los diferentes métodos HTTP disponibles

Inheritance
Available extensions

Values

get → const ChalonaHttpMethod

GET - Obtener recursos

const ChalonaHttpMethod('GET')
post → const ChalonaHttpMethod

POST - Crear recursos

const ChalonaHttpMethod('POST')
put → const ChalonaHttpMethod

PUT - Actualizar recursos completos

const ChalonaHttpMethod('PUT')
patch → const ChalonaHttpMethod

PATCH - Actualizar recursos parcialmente

const ChalonaHttpMethod('PATCH')
delete → const ChalonaHttpMethod

DELETE - Eliminar recursos

const ChalonaHttpMethod('DELETE')

HEAD - Obtener solo headers

const ChalonaHttpMethod('HEAD')
options → const ChalonaHttpMethod

OPTIONS - Obtener opciones disponibles

const ChalonaHttpMethod('OPTIONS')
trace → const ChalonaHttpMethod

TRACE - Rastrear la petición

const ChalonaHttpMethod('TRACE')
connect → const ChalonaHttpMethod

CONNECT - Establecer túnel

const ChalonaHttpMethod('CONNECT')

Properties

hashCode int
The hash code for this object.
no setterinherited
index int
A numeric identifier for the enumerated value.
no setterinherited
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
value String
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<ChalonaHttpMethod>
A constant List of the values in this enum, in order of their declaration.