decode static method

RequestMethod? decode(
  1. int code
)

Returns the RequestMethod corresponding with a numeric code (if defined).

Implementation

static RequestMethod? decode(final int code) => _codeRegistry[code];