HttpCheck constructor

HttpCheck({
  1. List<ResponseStatusCode>? acceptedResponseStatusCodes,
  2. BasicAuthentication? authInfo,
  3. String? body,
  4. String? contentType,
  5. String? customContentType,
  6. Map<String, String>? headers,
  7. bool? maskHeaders,
  8. String? path,
  9. PingConfig? pingConfig,
  10. int? port,
  11. String? requestMethod,
  12. bool? useSsl,
  13. bool? validateSsl,
})

Implementation

HttpCheck({
  this.acceptedResponseStatusCodes,
  this.authInfo,
  this.body,
  this.contentType,
  this.customContentType,
  this.headers,
  this.maskHeaders,
  this.path,
  this.pingConfig,
  this.port,
  this.requestMethod,
  this.useSsl,
  this.validateSsl,
});