TrianglePainter constructor

TrianglePainter({
  1. Color strokeColor = Colors.black,
  2. double strokeWidth = 0,
  3. PaintingStyle paintingStyle = PaintingStyle.stroke,
  4. double blurRadius = 0,
  5. bool upsideDown = false,
})

Implementation

TrianglePainter(
    {this.strokeColor = Colors.black,
    this.strokeWidth = 0,
    this.paintingStyle = PaintingStyle.stroke,
    this.blurRadius = 0,
    this.upsideDown = false});