strokePath method

void strokePath({
  1. bool close = false,
})

Draw the contour of the previously defined shape

Implementation

void strokePath({bool close = false}) {
  assert(() {
    if (_page.pdfDocument.verbose) {
      _buf.putComment('strokePath close:$close');
    }
    return true;
  }());

  _buf.putString('${close ? 's' : 'S'}\n');
}