CustomSvgimage constructor

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

Implementation

const CustomSvgimage({
  Key? key,
  required this.image,
  this.color,
  this.height,
  this.width,
  this.fit = BoxFit.contain
}) : super(key: key);