TrianglePainter constructor

TrianglePainter({
  1. required List<Triangle> triangles,
  2. required double animationValue,
  3. required Size screenSize,
  4. required Paint trianglePaint,
  5. required Paint borderPaint,
})

Implementation

TrianglePainter({
  required this.triangles,
  required this.animationValue,
  required this.screenSize,
  required this.trianglePaint,
  required this.borderPaint,
});