flag method

VlDataRow flag(
  1. String field,
  2. bool value
)

Puts true or false in one column of this row.

field The column name. value The value.

Returns This row, so columns chain.

Implementation

VlDataRow flag(String field, bool value) {
  this.obj.setMember(field, VlJson.boolValue(value));
  return this;
}