BalloonAnimation constructor
const
BalloonAnimation({
- Key? key,
- required int balloonCount,
- Size balloonSize = const Size(100, 200),
- bool showBalloons = false,
- VoidCallback? onComplete,
Implementation
const BalloonAnimation({
Key? key,
required this.balloonCount,
this.balloonSize = const Size(100, 200),
this.showBalloons = false,
this.onComplete,
}) : super(key: key);