lerp static method

Implementation

static NomoOutlineContainerColorData lerp(NomoOutlineContainerColorData a,
    NomoOutlineContainerColorData b, double t) {
  return NomoOutlineContainerColorData(
    foreground: Color.lerp(a.foreground, b.foreground, t)!,
    background: Color.lerp(a.background, b.background, t)!,
    shape: t < 0.5 ? a.shape : b.shape,
    border: BoxBorder.lerp(a.border, b.border, t)!,
  );
}