GroupCondition<O> constructor

GroupCondition<O>(
  1. Iterable<Condition> conditions
)

Implementation

GroupCondition(Iterable<Condition> conditions)
    : conditions =
          conditions is List<Condition> ? conditions : conditions.toList(),
      super._() {
  for (var c in conditions) {
    c._parent = this;
  }
}