setLineJoin method

void setLineJoin(
  1. PdfLineJoin join
)

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');
}