Villain constructor
const
Villain({
- Key? key,
- required VillainAnimation villainAnimation,
- VillainAnimation? secondaryVillainAnimation,
- Widget? child,
- bool animateEntrance = true,
- bool animateExit = true,
- bool animateReEntrance = true,
Implementation
const Villain(
{Key? key,
required this.villainAnimation,
this.secondaryVillainAnimation,
this.child,
this.animateEntrance = true,
this.animateExit = true,
this.animateReEntrance = true})
: super(key: key);