createColorFilterAnimation method

Animation<Color?> createColorFilterAnimation()

Implementation

Animation<Color?> createColorFilterAnimation() {
  return ColorTween(
          begin: Colors.transparent, end: awesomeMessage.overlayColor)
      .animate(
    CurvedAnimation(
      parent: _controller!,
      curve: Interval(
        0.0,
        0.35,
        curve: Curves.easeInOutCirc,
      ),
    ),
  );
}