CodeNestSvgImage constructor

const CodeNestSvgImage({
  1. Key? key,
  2. required String assetPath,
  3. double? width,
  4. double? height,
  5. BoxFit fit = BoxFit.contain,
})

Implementation

const CodeNestSvgImage({
  super.key,
  required this.assetPath,
  this.width,
  this.height,
  this.fit = BoxFit.contain,
});