@@ -884,7 +884,7 @@ steps:
884884 Animation<double> animation = buildAnimation(controller, entry);
885885 return getOptimizedBuilder<double>(
886886 animation: animation,
887- builder: (_, __ ) {
887+ builder: (_, _ ) {
888888 return AnimatedSampler(
889889 (image, size, canvas) {
890890 EdgeInsets? insets;
@@ -1596,7 +1596,7 @@ steps:
15961596 if (fragmentPrograms == null) return const SizedBox.expand();
15971597 return ListenableBuilder(
15981598 listenable: _heartbeatAnim,
1599- builder: (_, __ ) {
1599+ builder: (_, _ ) {
16001600 final heartbeatEnergy = _heartbeatAnim
16011601 .drive(_heartbeatSequence)
16021602 .value;
@@ -2878,11 +2878,11 @@ steps:
28782878 + return TweenAnimationBuilder(
28792879 + tween: ColorTween(begin: emitColor, end: emitColor),
28802880 + duration: duration,
2881- + builder: (_, emitColor, __ ) {
2881+ + builder: (_, emitColor, _ ) {
28822882 + return TweenAnimationBuilder(
28832883 + tween: ColorTween(begin: orbColor, end: orbColor),
28842884 + duration: duration,
2885- + builder: (context, orbColor, __ ) {
2885+ + builder: (context, orbColor, _ ) {
28862886 + return builder(context, orbColor!, emitColor!);
28872887 + },
28882888 + );
0 commit comments