where method

NUIDBQueryCombination where({
  1. required String field,
  2. required NUIEntType type,
  3. required NUIDBQueryType condition,
  4. required dynamic value,
})

Implementation

NUIDBQueryCombination where({required String field, required NUIEntType type, required NUIDBQueryType condition, required dynamic value}){
  queries.add(NUIDBQuery(field: NUIDBFieldQuery(name: field, type: type), type: condition, value: value));
  return this;
}