AnimatedPolygon constructor

const AnimatedPolygon({
  1. Key? key,
  2. required Duration duration,
  3. required List<Offset> points,
  4. required Paint paint,
})

Implementation

const AnimatedPolygon({
  super.key,
  required super.duration,
  required this.points,
  required this.paint,
});