OrCondition constructor

OrCondition(
  1. List<RunCondition> conditions
)

Implementation

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