setValue<ValType> method

Insert setValue<ValType>(
  1. String column,
  2. ValType value
)
override

Sets the value of the given column.

Implementation

Insert setValue<ValType>(String column, ValType value) {
  _values[column] = value;
  return this;
}