1
0
Fork 0
mirror of synced 2024-07-07 23:46:11 +12:00
appwrite/app/sdks/flutter-dart/lib/enums.dart

10 lines
186 B
Dart
Raw Normal View History

2020-03-27 02:20:07 +13:00
enum HttpMethod {
get, post, put, delete, patch
}
extension HttpMethodString on HttpMethod{
String name(){
return this.toString().split('.').last.toUpperCase();
}
}