Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Commit f902f85

Browse files
committed
null-annotate lerp.dart
1 parent ae2222f commit f902f85

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/ui/lerp.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
part of dart.ui;
77

88
/// Linearly interpolate between two numbers.
9-
double lerpDouble(num a, num b, double t) {
9+
double/*!*/ lerpDouble(num/*?*/ a, num/*?*/ b, double/*!*/ t) {
1010
if (a == null && b == null)
1111
return null;
1212
a ??= 0.0;

0 commit comments

Comments
 (0)