isValidMethod static method
- String method
Implementation
static bool isValidMethod(String method) =>
GET == method ||
POST == method ||
PATCH == method ||
PUT == method ||
DELETE == method ||
HEAD == method ||
OPTIONS == method;