pickLerpNullable<T> static method

T? pickLerpNullable<T>(
  1. T? a,
  2. T? b,
  3. double t
)

Implementation

static T? pickLerpNullable<T>(T? a, T? b, double t) {
  return t < 0.5 ? a : b;
}