setMinWindowScore method

void setMinWindowScore(
  1. double minWindowScore
)

Implementation

void setMinWindowScore(double minWindowScore) {
  if (!(minWindowScore >= 0.0)) {
    throw ArgumentError("minWindowScore must not be negative");
  }
  this.minWindowScore = minWindowScore;
}