lerp method

Implementation

@override
CircleDataPointStyle lerp(CircleDataPointStyle next, double t) {
  return CircleDataPointStyle(
    radius: lerpDouble(radius, next.radius, t) ?? next.radius,
    color: Color.lerp(color, next.color, t) ?? next.color,
  );
}