strokeJoin property

StrokeJoin strokeJoin

Gets or sets the type of corner that will be drawn for a stroke at the intersection of two straight segments of the geometry. The value must be one of "miter", "bevel", or "round". The default is "miter".

For more information, see Stroke Line Join (w3.org).

Implementation

_i3.StrokeJoin get strokeJoin => _i3.StrokeJoin.values.byName(_i4.getProperty(
      this,
      'strokeJoin',
    ));
void strokeJoin=(StrokeJoin value)

Implementation

set strokeJoin(_i3.StrokeJoin value) {
  _i4.setProperty(
    this,
    'strokeJoin',
    value.name,
  );
}