menu
any_borders package
documentation
any_utils.dart
AnyUtils
pickLerpNullable<T> static method
pickLerpNullable<T> static method
dark_mode
light_mode
pickLerpNullable<
T
>
static method
T?
pickLerpNullable
<
T
>(
T?
a
,
T?
b
,
double
t
)
Implementation
static T? pickLerpNullable<T>(T? a, T? b, double t) { return t < 0.5 ? a : b; }
any_borders package
documentation
any_utils
AnyUtils
pickLerpNullable<T> static method
AnyUtils class