SvgImageViewData constructor

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

Implementation

const SvgImageViewData({
  required this.data,
  this.width,
  this.height,
  this.boxFit = BoxFit.contain,
  this.color,
  super.key});