ArcaneSvgLine constructor

const ArcaneSvgLine({
  1. required String x1,
  2. required String y1,
  3. required String x2,
  4. required String y2,
  5. String? stroke,
  6. String? strokeWidth,
  7. String? strokeLinecap,
  8. Key? key,
})

Implementation

const ArcaneSvgLine({
  required this.x1,
  required this.y1,
  required this.x2,
  required this.y2,
  this.stroke,
  this.strokeWidth,
  this.strokeLinecap,
  super.key,
});