lerp method
Linearly interpolate between this and another FDialogRouteStyle using the given factor t
.
Implementation
@useResult
FDialogRouteStyle lerp(FDialogRouteStyle other, double t) => FDialogRouteStyle(
barrierFilter: t < 0.5 ? barrierFilter : other.barrierFilter,
motion: motion.lerp(other.motion, t),
);