Body constructor

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();