iconAnimation property

Animation<double> iconAnimation
getter/setter pair

Implementation

late Animation<double> iconAnimation =
    Tween<double>(begin: -10, end: 10).animate(CurvedAnimation(
  parent: _controller!,
  curve: const Interval(
    0.6,
    1.0,
    curve: Curves.easeIn,
  ),
));