APIEncoding constructor

APIEncoding({
  1. String? contentType,
  2. Map<String, APIHeader?>? headers,
  3. String? style,
  4. bool? allowReserved = false,
  5. bool? explode = false,
})

Implementation

APIEncoding({
  this.contentType,
  this.headers,
  this.style,
  this.allowReserved = false,
  this.explode = false,
});