SvgUse constructor
SvgUse({})
Creates an SVG <use> instance reuse descriptor.
Implementation
SvgUse({
required String href,
num? x,
num? y,
super.className,
Map<String, String>? attrs,
super.on,
}) : super('use',
attrs: _mergeAttrs(attrs, {
'href': href,
if (x != null) 'x': '$x',
if (y != null) 'y': '$y',
}));