draw static method
Implementation
static Widget draw({
required Color color,
required double size,
required double strokeWidth,
required double startAngle,
required double endAngle,
}) =>
SizedBox(
width: size,
height: size,
child: CustomPaint(
painter: Arc._(
color,
strokeWidth,
startAngle,
endAngle,
),
),
);