lerp method

Linearly interpolates this style toward other by t.

Implementation

FdcErrorIndicatorMarkerStyle lerp(
  FdcErrorIndicatorMarkerStyle other,
  double t,
) {
  return FdcErrorIndicatorMarkerStyle(
    color: Color.lerp(color, other.color, t),
    size: lerpDouble(size, other.size, t),
  );
}