IconAnimated constructor

const IconAnimated({
  1. Key? key,
  2. required Animation<double> progress,
  3. required double size,
  4. Color? color,
  5. double? strokeWidth,
  6. required IconType iconType,
})

Implementation

const IconAnimated(
    {Key? key,
    required this.progress,
    required this.size,
    this.color,
    this.strokeWidth,
    required this.iconType})
    : super(key: key);