fromMethodName static method
Implementation
static RequestMethod fromMethodName(String? name) {
return values.firstWhere(
(e) => e.name == name,
orElse:
() => throw ItemNotFoundException(name: "RequestMethod", value: name),
);
}
static RequestMethod fromMethodName(String? name) {
return values.firstWhere(
(e) => e.name == name,
orElse:
() => throw ItemNotFoundException(name: "RequestMethod", value: name),
);
}