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