lerp method

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

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),
);