SVGElementStyle constructor

const SVGElementStyle({
  1. Color? fillColor,
  2. Color? strokeColor,
  3. double? strokeWidth,
})

Implementation

const SVGElementStyle({
  this.fillColor,
  this.strokeColor,
  this.strokeWidth,
});