drawSection method
Implementation
@visibleForTesting
void drawSection(
PieChartSectionData section,
Path sectionPath,
CanvasWrapper canvasWrapper,
) {
_sectionPaint
..color = section.color
..style = PaintingStyle.fill;
canvasWrapper.drawPath(sectionPath, _sectionPaint);
}