PlatformSvg constructor

PlatformSvg(
  1. String assetName, {
  2. Key? key,
  3. String semanticLabel = '',
  4. double? height,
  5. double? width,
  6. BoxFit fit = BoxFit.contain,
})

Implementation

PlatformSvg(
  this.assetName, {
  Key? key,
  this.semanticLabel = '',
  this.height,
  this.width,
  this.fit = BoxFit.contain,
}) : super(key: key);