Add a toString for CurveTween (#14679)

This commit is contained in:
David Shuckerow 2018-02-14 14:33:42 -08:00 committed by GitHub
parent 9bc3bc9822
commit 83b4281649
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -327,4 +327,7 @@ class CurveTween extends Animatable<double> {
}
return curve.transform(t);
}
@override
String toString() => '$runtimeType(curve: $curve)';
}