lerp static method
Implementation
static DashedContainerProperties lerp(
DashedContainerProperties a,
DashedContainerProperties b,
double t,
) {
return DashedContainerProperties(
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)!,
borderRadius: BorderRadius.lerp(a.borderRadius, b.borderRadius, t)!,
);
}