HttpHeaderOption constructor

HttpHeaderOption({
  1. String? headerName,
  2. String? headerValue,
  3. bool? replace,
})

Implementation

HttpHeaderOption({
  this.headerName,
  this.headerValue,
  this.replace,
});