notchAnimation property

Animation<double> notchAnimation
getter/setter pair

Implementation

late Animation<double> notchAnimation = CurvedAnimation(
  parent: _controller!,
  curve: const Interval(
    0.0,
    0.8,
    curve: Curves.bounceInOut,
  ),
);