all property

Map<RequestType, String> all
getter/setter pair

Implementation

static Map<RequestType, String> all = {
  get: 'GET',
  post: 'POST',
  put: 'PUT',
  patch: 'PATCH',
  delete: 'DELETE',
};