lerp static method

Implementation

static DashedLineProperties lerp(
  DashedLineProperties a,
  DashedLineProperties b,
  double t,
) {
  return DashedLineProperties(
    width: lerpDouble(a.width, b.width, t)!,
    gap: lerpDouble(a.gap, b.gap, t)!,
    thickness: lerpDouble(a.thickness, b.thickness, t)!,
    color: Color.lerp(a.color, b.color, t)!,
  );
}