setLineJoin method
Set line join type
Implementation
void setLineJoin(PdfLineJoin join) {
assert(() {
if (_page.pdfDocument.verbose) {
_buf.putComment('setLineJoin $join');
}
return true;
}());
_buf.putString('${join.index} j\n');
}