toPath method
Implementation
Path toPath({
required double progress,
Path? path,
double startAngle = 0.0,
bool repeatPath = false,
bool closePath = true,
double rotationPivotX = 0.0,
double rotationPivotY = 0.0,
}) => _pathFromCubics(
path: path ?? Path(),
startAngle: startAngle,
repeatPath: repeatPath,
closePath: closePath,
cubics: asCubics(progress),
rotationPivotX: rotationPivotX,
rotationPivotY: rotationPivotY,
);