StoppingCondition constructor

StoppingCondition({
  1. int? maxRuntimeInSeconds,
  2. int? maxWaitTimeInSeconds,
})

Implementation

StoppingCondition({
  this.maxRuntimeInSeconds,
  this.maxWaitTimeInSeconds,
});