strokeLinecap property
Implementation
@override get strokeLinecap => _strokeLinecap ?? CSSStrokeLinecap.butt;
set
strokeLinecap
(CSSStrokeLinecap value)
inherited
Implementation
set strokeLinecap(CSSStrokeLinecap value) {
if (_strokeLinecap == value) return;
_strokeLinecap = value;
_markRepaint();
}