ApiType enum
HTTP method types supported by FlutterApiCraft.
Maps directly to the method selector in Postman.
Values
- get → const ApiType
-
HTTP GET — retrieve a resource.
- post → const ApiType
-
HTTP POST — create a resource or submit data.
- put → const ApiType
-
HTTP PUT — replace a resource entirely.
- patch → const ApiType
-
HTTP PATCH — partially update a resource.
- delete → const ApiType
-
HTTP DELETE — remove a resource.
- head → const ApiType
-
HTTP HEAD — like GET but returns headers only (no body).
- options → const ApiType
-
HTTP OPTIONS — query which methods the server supports.
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
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