setBool method

Update setBool(
  1. String column,
  2. bool value
)
override

Convenience method to set the value of bool column.

Implementation

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