HTTPGetAction constructor

HTTPGetAction({
  1. String? host,
  2. List<HTTPHeader>? httpHeaders,
  3. String? path,
  4. int? port,
  5. String? scheme,
})

Implementation

HTTPGetAction({
  this.host,
  this.httpHeaders,
  this.path,
  this.port,
  this.scheme,
});