reverseMap property

Map<String, RequestTypeE> get reverseMap

Implementation

static Map<String, RequestTypeE> get reverseMap => {
      'GET': RequestTypeE.GET,
      'POST': RequestTypeE.POST,
      'PUT': RequestTypeE.PUT,
      'DELETE': RequestTypeE.DELETE,
      'PATCH': RequestTypeE.PATCH,
    };