Group constructor

Group({
  1. required List<SvgWidget> children,
  2. Color? fill,
  3. String? id,
  4. Color? stroke,
  5. StrokeDasharray? strokeDasharray,
  6. StrokeWidth? strokeWidth,
  7. String? style,
  8. String? transform,
  9. Unit? unit,
  10. Visibility? visibility = Visibility.inherit,
})

Group constructor children three with SVG elements id widget id to made some reference in the SVG file fill fill color stroke stroke line color strokeWidth stroke line width strokeDasharray stroke line dash style style custom css style transform custom css transformation unit unit used in the parameters, default is px (pixel) visibility visibility of the element, default is inherit

Implementation

Group(
    {required this.children,
    this.fill,
    this.id,
    this.stroke,
    this.strokeDasharray,
    this.strokeWidth,
    this.style,
    this.transform,
    this.unit,
    this.visibility = Visibility.inherit});