Group class

Class to generate SVG groups

Constructors:

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

Constructors

Group({required List<SvgWidget> children, Color? fill, String? id, Color? stroke, StrokeDasharray? strokeDasharray, StrokeWidth? strokeWidth, String? style, String? transform, Unit? unit, 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

Properties

children List<SvgWidget>
getter/setter pair
fill Color?
getter/setter pairoverride
hashCode int
The hash code for this object.
no setterinherited
id String?
getter/setter pairoverride
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
stroke Color?
getter/setter pairoverride
strokeDasharray StrokeDasharray?
getter/setter pairoverride
strokeWidth StrokeWidth?
getter/setter pairoverride
style String?
getter/setter pairoverride
transform String?
getter/setter pairoverride
unit Unit?
getter/setter pairoverride
visibility Visibility?
getter/setter pairoverride

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited
toXML() String
Convert the Svg structure to XML string
override

Operators

operator ==(Object other) bool
The equality operator.
inherited