HttpBody.form constructor

const HttpBody.form(
  1. Map<String, String> form
)

A www-form-urlencoded body. The Content-Type header will be set to application/x-www-form-urlencoded if not provided.

Implementation

const factory HttpBody.form(Map<String, String> form) = HttpBodyForm._;