body top-level constant

Body const body

Declares the Body of POST, PUT, and PATCH requests

@POST()
Future<Response> post(@Body() Map<String, dynamic> body);

The body can be of any type, but chopper does not automatically convert it to JSON. See Converter to apply conversion to the body.

Implementation

const body = Body();