SvgUse constructor

SvgUse(
  1. double x,
  2. double y,
  3. double width,
  4. double height,
  5. SvgOperation? href,
  6. SvgBrush brush,
  7. SvgClipPath clip,
  8. SvgTransform transform,
  9. SvgPainter painter,
)

Implementation

SvgUse(
  this.x,
  this.y,
  this.width,
  this.height,
  this.href,
  SvgBrush brush,
  SvgClipPath clip,
  SvgTransform transform,
  SvgPainter painter,
) : super(brush, clip, transform, painter);