HealthCheck constructor

HealthCheck({
  1. String? checkInterval,
  2. bool? disableHealthCheck,
  3. int? healthyThreshold,
  4. String? host,
  5. int? restartThreshold,
  6. String? timeout,
  7. int? unhealthyThreshold,
})

Implementation

HealthCheck({
  this.checkInterval,
  this.disableHealthCheck,
  this.healthyThreshold,
  this.host,
  this.restartThreshold,
  this.timeout,
  this.unhealthyThreshold,
});