CustomIcon constructor

const CustomIcon({
  1. Key? key,
  2. IconData? iconData,
  3. String? svg,
  4. String? res,
  5. Color? color,
  6. double? size,
  7. bool? isTitleColor = false,
})

Implementation

const CustomIcon({
  super.key,
  this.iconData,
  this.svg,
  this.res,
  this.color,
  this.size,
  this.isTitleColor = false,
});