ProxyOptions constructor

const ProxyOptions({
  1. String? method,
  2. Map<String, String?>? headers,
  3. bool forwardHeaders = true,
  4. bool forwardBody = true,
})

Implementation

const ProxyOptions({
  this.method,
  this.headers,
  this.forwardHeaders = true,
  this.forwardBody = true,
});