mirror of
https://github.com/appwrite/appwrite
synced 2026-05-23 00:49:02 +00:00
16 lines
330 B
Dart
16 lines
330 B
Dart
|
|
enum HttpMethod { get, post, put, delete, patch }
|
||
|
|
|
||
|
|
extension HttpMethodString on HttpMethod {
|
||
|
|
String name() {
|
||
|
|
return this.toString().split('.').last.toUpperCase();
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
enum OrderType { asc, desc }
|
||
|
|
|
||
|
|
extension OrderTypeString on OrderType {
|
||
|
|
String name() {
|
||
|
|
return this.toString().split('.').last.toUpperCase();
|
||
|
|
}
|
||
|
|
}
|