PinFillSvg constructor

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

Implementation

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