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