Skip to content

Commit 5dcca61

Browse files
committed
🎨 Added exports
1 parent b1e4a06 commit 5dcca61

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

lib/style/interface/color_group_interface.dart

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,7 @@ abstract interface class ColorGroupInterface<T> {
2121

2222
/// Linearly interpolate with another object.
2323
ColorGroupInterface<T> lerp(
24-
covariant ColorGroupInterface<T>? other, double t);
24+
covariant ColorGroupInterface<T>? other,
25+
double t,
26+
);
2527
}

lib/style/interface/surface_group_interface.dart

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,5 +56,7 @@ abstract interface class SurfaceGroupInterface<T> {
5656

5757
/// Linearly interpolate with another object.
5858
SurfaceGroupInterface<T> lerp(
59-
covariant SurfaceGroupInterface<T>? other, double t);
59+
covariant SurfaceGroupInterface<T>? other,
60+
double t,
61+
);
6062
}

0 commit comments

Comments
 (0)