SvgImageViewUrl constructor

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

Implementation

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