ApiBody.json constructor

const ApiBody.json(
  1. dynamic data
)

JSON body — pass a Map or List, auto-encoded to JSON.

Implementation

const ApiBody.json(dynamic data)
    : this(
  type: ApiBodyType.raw,
  rawData: data,
  rawContentType: RawBodyContentType.json,
);