isHttpMethod function

bool isHttpMethod(
  1. String method
)

Implementation

bool isHttpMethod(String method) => httpMethods.contains(method.toUpperCase());