formHeaders method

Map<String, String?> formHeaders()

Implementation

Map<String, String?> formHeaders() {
  var headersForm = headers();
  headersForm['Content-Type'] = 'application/x-www-form-urlencoded';
  return headersForm;
}