ReadinessCheck constructor

ReadinessCheck({
  1. String? appStartTimeout,
  2. String? checkInterval,
  3. int? failureThreshold,
  4. String? host,
  5. String? path,
  6. int? successThreshold,
  7. String? timeout,
})

Implementation

ReadinessCheck({
  this.appStartTimeout,
  this.checkInterval,
  this.failureThreshold,
  this.host,
  this.path,
  this.successThreshold,
  this.timeout,
});