SimpleAnimatedIcon constructor

const SimpleAnimatedIcon({
  1. Key? key,
  2. required IconData startIcon,
  3. required IconData endIcon,
  4. required Animation<double> progress,
  5. Color? color,
  6. double? size,
  7. String? semanticLabel,
  8. TextDirection? textDirection,
  9. Iterable<Transitions> transitions = const [Transitions.rotate_cw],
})

Implementation

const SimpleAnimatedIcon({
  Key? key,
  required this.startIcon,
  required this.endIcon,
  required this.progress,
  this.color,
  this.size,
  this.semanticLabel,
  this.textDirection,
  this.transitions = const [Transitions.rotate_cw],
})  : super(key: key);