lerp method

  1. @useResult
FSwitchStyle lerp(
  1. FSwitchStyle other,
  2. double t
)

Linearly interpolate between this and another FSwitchStyle using the given factor t.

Implementation

@useResult
FSwitchStyle lerp(FSwitchStyle other, double t) => .new(
  focusColor: .lerp(focusColor, other.focusColor, t) ?? focusColor,
  trackColor: .lerpColor(trackColor, other.trackColor, t),
  thumbColor: .lerpColor(thumbColor, other.thumbColor, t),
  labelPadding: .lerp(labelPadding, other.labelPadding, t) ?? labelPadding,
  descriptionPadding: .lerp(descriptionPadding, other.descriptionPadding, t) ?? descriptionPadding,
  errorPadding: .lerp(errorPadding, other.errorPadding, t) ?? errorPadding,
  childPadding: .lerp(childPadding, other.childPadding, t) ?? childPadding,
  labelTextStyle: .lerpTextStyle(labelTextStyle, other.labelTextStyle, t),
  descriptionTextStyle: .lerpTextStyle(descriptionTextStyle, other.descriptionTextStyle, t),
  errorTextStyle: .lerp(errorTextStyle, other.errorTextStyle, t) ?? errorTextStyle,
);