lerp method
Implementation
TableViewVerticalDividerStyle lerp(
TableViewVerticalDividerStyle other, double t) =>
TableViewVerticalDividerStyle(
color: Color.lerp(color, other.color, t),
thickness: lerpDouble(thickness, other.thickness, t),
wiggleCount: // not sure about that
lerpDouble(wiggleCount, other.wiggleCount, t)?.toInt(),
wiggleOffset: lerpDouble(wiggleOffset, other.wiggleOffset, t),
revealOffset: lerpDouble(revealOffset, other.revealOffset, t),
opacityRevealCurve:
_binaryLerp(opacityRevealCurve, other.opacityRevealCurve, t),
wiggleRevealCurve:
_binaryLerp(wiggleRevealCurve, other.wiggleRevealCurve, t),
);