HttpContext constructor

HttpContext({
  1. Map<String, String>? headers,
  2. String? queryString,
})

Implementation

HttpContext({
  this.headers,
  this.queryString,
});