IconStyle constructor

const IconStyle({
  1. required Color iconColor,
  2. Color? bgColor,
  3. Color? borderColor,
})

Implementation

const IconStyle({
  required this.iconColor,
  this.bgColor,
  this.borderColor,
});