method property

HttpMethod method

The HttpMethod associated with the request.

Implementation

HttpMethod get method {
  return HttpMethod.values.firstWhere((m) => m.value == _request.method);
}