lerpTo method

Implementation

IndicatorShape lerpTo(IndicatorShape b, double t) {
  return IndicatorShape(
    width: lerpDouble(width, b.width, t)!,
    height: lerpDouble(height, b.height, t)!,
    borderRadius: BorderRadius.lerp(borderRadius, b.borderRadius, t),
  );
}