opacityAnimation property

Animation<double> opacityAnimation
getter/setter pair

Implementation

late Animation<double> opacityAnimation =
    Tween<double>(begin: 0.2, end: 1).animate(CurvedAnimation(
  parent: _controller!,
  curve: const Interval(
    0.2,
    1.0,
    curve: Curves.easeIn,
  ),
));