lerp static method

Implementation

static PrimaryNomoButtonColorData lerp(
    PrimaryNomoButtonColorData a, PrimaryNomoButtonColorData b, double t) {
  return PrimaryNomoButtonColorData(
    backgroundColor: Color.lerp(a.backgroundColor, b.backgroundColor, t)!,
    foregroundColor: Color.lerp(a.foregroundColor, b.foregroundColor, t)!,
    elevation: lerpDouble(a.elevation, b.elevation, t)!,
    borderRadius:
        BorderRadiusGeometry.lerp(a.borderRadius, b.borderRadius, t)!,
  );
}