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