diff --git a/packages/flutter/lib/src/animation/tween.dart b/packages/flutter/lib/src/animation/tween.dart index 7683e5d1e4..02b86a2eaf 100644 --- a/packages/flutter/lib/src/animation/tween.dart +++ b/packages/flutter/lib/src/animation/tween.dart @@ -327,4 +327,7 @@ class CurveTween extends Animatable { } return curve.transform(t); } + + @override + String toString() => '$runtimeType(curve: $curve)'; }