BalloonAnimation constructor

const BalloonAnimation({
  1. Key? key,
  2. required int balloonCount,
  3. Size balloonSize = const Size(100, 200),
  4. bool showBalloons = false,
  5. VoidCallback? onComplete,
})

Implementation

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