strokeLinecap property

  1. @override
CSSStrokeLinecap get strokeLinecap
inherited

Implementation

@override get strokeLinecap => _strokeLinecap ?? CSSStrokeLinecap.butt;
set strokeLinecap (CSSStrokeLinecap value)
inherited

Implementation

set strokeLinecap(CSSStrokeLinecap value) {
  if (_strokeLinecap == value) return;
  _strokeLinecap = value;
  _markRepaint();
}