Balloon constructor
const
Balloon({})
Implementation
const Balloon({
required ValueKey<int> key,
this.color = Colors.pink,
this.size = 70.0,
this.duration = const Duration(seconds: 8),
this.onAnimationComplete,
}) : super(key: key);