1
0
Fork 0
mirror of synced 2024-07-16 11:56:24 +12:00
appwrite/app/sdks/flutter-dart/lib/enums.dart
2020-03-26 15:20:07 +02:00

10 lines
186 B
Dart

enum HttpMethod {
get, post, put, delete, patch
}
extension HttpMethodString on HttpMethod{
String name(){
return this.toString().split('.').last.toUpperCase();
}
}