HTTPGetAction constructor

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

Default constructor.

Implementation

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