flag method
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;
}