lerp property

T Function(T a, T b, double t)? lerp
final

Custom interpolation function for complex types.

Required for types that don't support standard numeric interpolation. The function receives start value a, end value b, and progress t (0.0-1.0). Must return the interpolated value at progress t.

Implementation

final T Function(T a, T b, double t)? lerp;