values constant

Map<String, Method> const values

A constant Map of the methods

Implementation

static const Map<String, Method> values = {
  'HEAD': head,
  'GET': get,
  'POST': post,
  'PUT': put,
  'PATCH': patch,
  'DELETE': delete,
  'OPTIONS': options,
};