ArcaneSvgPolygon constructor

const ArcaneSvgPolygon({
  1. required String points,
  2. String? fill,
  3. String? stroke,
  4. String? strokeWidth,
  5. Key? key,
})

Implementation

const ArcaneSvgPolygon({
  required this.points,
  this.fill,
  this.stroke,
  this.strokeWidth,
  super.key,
});