getShapesPath function
Get the various shape path
Implementation
Path getShapesPath(
{Canvas? canvas,
Paint? paint,
Paint? borderPaint,
required Rect rect,
required ShapeMarkerType shapeType,
Path? path,
double? pentagonRotation = -pi / 2,
double? radius,
double? degree,
double? startAngle,
double? endAngle}) {
return _processShapes(
canvas: canvas ?? Canvas(PictureRecorder()),
paint: paint ?? Paint(),
borderPaint: borderPaint,
rect: rect,
path: path ?? Path(),
shapeType: shapeType,
isNeedToReturnPath: true,
pentagonRotation: pentagonRotation,
radius: radius,
degree: degree,
startAngle: startAngle,
endAngle: endAngle);
}