lerp method
Linearly interpolate between this and another FHeaderStyles using the given factor t
.
Implementation
@useResult
FHeaderStyles lerp(FHeaderStyles other, double t) =>
FHeaderStyles(rootStyle: rootStyle.lerp(other.rootStyle, t), nestedStyle: nestedStyle.lerp(other.nestedStyle, t));