ArcaneSvgGroup constructor

const ArcaneSvgGroup({
  1. required List<Component> children,
  2. String? fill,
  3. String? stroke,
  4. String? strokeWidth,
  5. String? transform,
  6. Key? key,
})

Implementation

const ArcaneSvgGroup({
  required this.children,
  this.fill,
  this.stroke,
  this.strokeWidth,
  this.transform,
  super.key,
});