SvgIcon constructor

const SvgIcon({
  1. Key? key,
  2. required IconModel icon,
  3. Color? color,
  4. double? size,
  5. BoxFit fit = BoxFit.contain,
})

Implementation

const SvgIcon({
  super.key,
  required this.icon,
  this.color,
  this.size,
  this.fit = BoxFit.contain,
});