setBool method

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

Convenience method to set the value of bool column.

Implementation

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