lerp static method

Implementation

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