getPath method
Retrieve Path of shape
Implementation
@override
Path getPath({required Size size}) {
  return _polygon.getPath(
      startAngle: startAngle,
      clockwise: clockwise,
      size: size,
      boxFit: boxFit,
      cornerRadius: cornerRadius);
}