AutoRotatingIcon constructor
- Key? key,
- required AutoRotatingPosition position,
- Widget child = const Icon(Icons.arrow_drop_down),
- Duration duration = kSmallDuration,
- Curve curve = Curves.easeInOut,
Implementation
const AutoRotatingIcon({
super.key,
required this.position,
this.child = const Icon(Icons.arrow_drop_down),
this.duration = kSmallDuration,
this.curve = Curves.easeInOut,
});