SvgImageView constructor

const SvgImageView({
  1. required String fileName,
  2. String? rootPath,
  3. double? width,
  4. double? height,
  5. BoxFit boxFit = BoxFit.contain,
  6. Color? color,
  7. Key? key,
})

Implementation

const SvgImageView({
  required this.fileName,
  this.rootPath,
  this.width,
  this.height,
  this.boxFit = BoxFit.contain,
  this.color,
  super.key});