phase3: nullfix arg-bang handler (argument_type/invalid_assignment). 872 -> 621

This commit is contained in:
2026-07-25 18:16:40 +08:00
parent c21ccbd54d
commit a76b872966
65 changed files with 282 additions and 257 deletions

View File

@@ -24,7 +24,7 @@ class AnimationPointManager {
Animation animation = createAnimation(controller1);
AnimatedWidget animatedWidget = ParabolicAnimationWidget(
animation: animation,
animation: animation!,
stackKey: stackKey,
startKey: startKey,
endKey: endKey,
@@ -59,7 +59,7 @@ class AnimationPointManager {
Offset popupOffset = Offset.zero,
AnimationStatusListener? statusListener,
}) async {
controller2 = createController(vsync, duration);
controller2 = createController(vsync, duration!);
AnimatedWidget animatedWidget = PopupAnimationWidget(
animation: controller2.view,