withConditions method

EliudQuery withConditions(
  1. List<EliudQueryCondition>? theConditions
)

Implementation

EliudQuery withConditions(List<EliudQueryCondition>? theConditions) {
  if (theConditions != null) {
    conditions.addAll(theConditions);
  }
  return this;
}