MotionToastIcon constructor

const MotionToastIcon({
  1. Key? key,
  2. required double iconSize,
  3. required Color color,
  4. required IconData icon,
  5. required bool withAnimation,
})

Implementation

const MotionToastIcon({
  Key? key,
  required this.iconSize,
  required this.color,
  required this.icon,
  required this.withAnimation,
}) : super(key: key);