PinSvg constructor

const PinSvg(
  1. String svg, {
  2. Key? key,
  3. double? width,
  4. double? height,
  5. double? size,
  6. BoxFit fit = BoxFit.contain,
  7. bool allowDrawingOutsideViewBox = true,
  8. Color? color,
  9. double? angle,
})

Implementation

const PinSvg(
  this.svg, {
  Key? key,
  this.width,
  this.height,
  this.size,
  this.fit = BoxFit.contain,
  this.allowDrawingOutsideViewBox = true,
  this.color,
  this.angle,
}) : super(key: key);