CherryToastIcon constructor

const CherryToastIcon({
  1. Key? key,
  2. required Color color,
  3. required IconData icon,
  4. required double iconSize,
  5. required Color iconColor,
  6. required bool enableAnimation,
})

Implementation

const CherryToastIcon({
  Key? key,
  required this.color,
  required this.icon,
  required this.iconSize,
  required this.iconColor,
  required this.enableAnimation,
}) : super(key: key);