AnimatedIcon constructor

const AnimatedIcon({
  1. Key? key,
  2. required IconData icon,
  3. required Color iconColor,
  4. required SnackbarType type,
  5. required SnackbarAnimation animation,
  6. ContentDesignStyle? designStyle,
  7. bool enablePulse = true,
})

Implementation

const AnimatedIcon({
  super.key,
  required this.icon,
  required this.iconColor,
  required this.type,
  required this.animation,
  this.designStyle,
  this.enablePulse = true,
});