ArcaneSvgPath constructor

const ArcaneSvgPath({
  1. required String d,
  2. String? fill,
  3. String? stroke,
  4. String? strokeWidth,
  5. String? fillRule,
  6. String? clipRule,
  7. String? strokeLinecap,
  8. String? strokeLinejoin,
  9. Key? key,
})

Implementation

const ArcaneSvgPath({
  required this.d,
  this.fill,
  this.stroke,
  this.strokeWidth,
  this.fillRule,
  this.clipRule,
  this.strokeLinecap,
  this.strokeLinejoin,
  super.key,
});