This repository has been archived on 2024-10-18. You can view files and clone it, but cannot push or open issues or pull requests.
ftc_patient_app/lib/utilities/enums/api_method.dart

9 lines
88 B
Dart

enum ApiMethod {
get,
post,
put,
patch,
delete;
String get value => name;
}