paint method
Implementation
@override
void paint(Canvas canvas, Size size) {
canvas.drawArc(
Rect.fromPoints(
_getEffectiveStart(size),
_getEffectiveEnd(size),
),
_startAngle,
_sweepAngle,
_useCenter,
etchStyle.paint,
);
}