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