DialogIcon constructor

const DialogIcon({
  1. Key? key,
  2. required IconData icon,
  3. required Color color,
  4. ContentDesignStyle? designStyle,
  5. bool enableAnimation = true,
  6. bool enablePulse = true,
})

Implementation

const DialogIcon({
  super.key,
  required this.icon,
  required this.color,
  this.designStyle,
  this.enableAnimation = true,
  this.enablePulse = true,
});