public addValue()

in lib/common/utils/statementBuilder.util.ts [81:87]


  public addValue(key: string, value: Value): StatementBuilder {
    this.valueEntries.push({
      key,
      value: this.getValue(value),
    });
    return this;
  }