VxTriangle constructor

const VxTriangle({
  1. Key? key,
  2. Widget? child,
  3. Color? backgroundColor,
  4. double? width,
  5. double? height,
  6. double? strokeWidth,
})

Creates a triangle that represents a shape.

Implementation

const VxTriangle({
  Key? key,
  this.child,
  this.backgroundColor,
  this.width,
  this.height,
  this.strokeWidth,
}) : super(key: key);