setBool method

Upsert setBool(
  1. String column,
  2. bool value
)

Convenience method to set the value of bool column.

Implementation

Upsert setBool(String column, bool value) {
  _values[column] = value;
  return this;
}