isValidMethod static method

bool isValidMethod(
  1. String method
)

Implementation

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