getPath method

  1. @override
Path getPath({
  1. required Size size,
})
override

Retrieve Path of shape

Implementation

@override
Path getPath({required Size size}) {
  return GeoCustomPoints(getCoordinates(size: size)).getPath(
      rotate: GeoAngle.zero,
      clockwise: clockwise,
      size: size,
      boxFit: boxFit,
      cornerRadius: cornerRadius);
}