lerp method
Linearly interpolate between this and another FBadgeStyle using the given factor t.
Implementation
@useResult
FBadgeStyle lerp(FBadgeStyle other, double t) => .new(
decoration: .lerp(decoration, other.decoration, t) ?? decoration,
labelTextStyle: .lerp(labelTextStyle, other.labelTextStyle, t) ?? labelTextStyle,
padding: .lerp(padding, other.padding, t) ?? padding,
);