propFlag method
Sets any boolean property of the mark itself.
key The property name.
value The value.
Returns This mark, so calls chain.
Implementation
VlChartMark propFlag(String key, bool value) {
this.props.setMember(key, VlJson.boolValue(value));
return this;
}