fromMethodName static method

RequestMethod fromMethodName(
  1. String? name
)

Implementation

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