ArcaneSvgRect constructor

const ArcaneSvgRect({
  1. required String x,
  2. required String y,
  3. required String width,
  4. required String height,
  5. String? rx,
  6. String? ry,
  7. String? fill,
  8. String? stroke,
  9. String? strokeWidth,
  10. Key? key,
})

Implementation

const ArcaneSvgRect({
  required this.x,
  required this.y,
  required this.width,
  required this.height,
  this.rx,
  this.ry,
  this.fill,
  this.stroke,
  this.strokeWidth,
  super.key,
});