toPath method

Path toPath({
  1. required double progress,
  2. Path? path,
  3. double startAngle = 0.0,
})

Implementation

Path toPath({
  required double progress,
  Path? path,
  double startAngle = 0.0,
}) => toPathWith(
  path: path ?? Path(),
  progress: progress,
  startAngle: startAngle,
);