AndCondition constructor

AndCondition(
  1. List<RunCondition> conditions
)

Implementation

AndCondition(this.conditions) {
  if (conditions.length < 2) {
    throw DartleException(
        message: 'AndCondition requires at least two conditions');
  }
}