AnimatedLogo constructor

const AnimatedLogo({
  1. required Animation<double> animation,
  2. Key? key,
})

Create this widget providing the animation parameter to control the opacity of the flame.

Implementation

const AnimatedLogo({
  required Animation<double> animation,
  super.key,
}) : super(listenable: animation);