formParameters

abstract fun formParameters(): Map<String, List<String>>

Returns a map of form parameters to be sent as the request body with a application/x-www-form-urlencoded content type.

This allows for multiple values per key, which will be encoded as repeated key-value pairs in the request body (e.g., key=value1&key=value2).

Return

A map of form parameters, or null if there are none.