AnimatedPath constructor

const AnimatedPath({
  1. Key? key,
  2. required Animation<double> animation,
  3. required Path path,
  4. required Paint paint,
  5. Tween<double>? start,
  6. Tween<double>? end,
  7. Tween<double>? offset,
  8. Widget? child,
  9. Size size = Size.zero,
})

Implementation

const AnimatedPath({
  super.key,
  required this.animation,
  required this.path,
  required this.paint,
  this.start,
  this.end,
  this.offset,
  this.child,
  this.size = Size.zero,
});