AnimatedPath constructor

const AnimatedPath({
  1. Key? key,
  2. required List<Path> paths(
    1. Size size
    ),
  3. Widget? header,
  4. required Color color,
  5. double strokeWidth = 1,
  6. StrokeCap strokeCap = StrokeCap.square,
  7. StrokeJoin strokeJoin = StrokeJoin.miter,
  8. required Animation<double> animation,
  9. int? fps,
  10. EdgeInsetsGeometry padding = EdgeInsets.zero,
})

Implementation

const AnimatedPath({
  super.key,
  required this.paths,
  this.header,
  required this.color,
  this.strokeWidth = 1,
  this.strokeCap = StrokeCap.square,
  this.strokeJoin = StrokeJoin.miter,
  required this.animation,
  this.fps,
  this.padding = EdgeInsets.zero,
});