paint function
void
paint({})
Draws the different marker shapes.
Implementation
void paint(
{required Canvas canvas,
required Rect rect,
required ShapeMarkerType shapeType,
required Paint paint,
ShapeMarkerType? overlayMarkerType,
Path? path,
double? elevation,
Color? elevationColor,
Paint? borderPaint,
double? degree,
double? startAngle,
double? endAngle}) {
_processShapes(
canvas: canvas,
rect: rect,
shapeType: shapeType,
paint: paint,
path: path ?? Path(),
borderPaint: borderPaint,
isNeedToReturnPath: false,
elevation: elevation,
elevationColor: elevationColor,
overlayMarkerType: overlayMarkerType,
degree: degree,
startAngle: startAngle,
endAngle: endAngle);
}