ellipse constructor

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

The <ellipse> element is an SVG basic shape, used to create ellipses based on a center coordinate, and both their x and y radius.

Implementation

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