circle constructor

const circle(
  1. List<Component> children, {
  2. String? cx,
  3. String? cy,
  4. String? r,
  5. Color? fill,
  6. Color? stroke,
  7. String? strokeWidth,
  8. String? id,
  9. String? classes,
  10. Styles? styles,
  11. Map<String, String>? attributes,
  12. Map<String, EventCallback>? events,
  13. Key? key,
})

The <circle> SVG element is an SVG basic shape, used to draw circles based on a center point and a radius.

Implementation

const circle(
  this.children, {
  this.cx,
  this.cy,
  this.r,
  this.fill,
  this.stroke,
  this.strokeWidth,
  this.id,
  this.classes,
  this.styles,
  this.attributes,
  this.events,
  super.key,
});