lerp method

Linearly interpolate between this and another FCircularProgressStyle using the given factor t.

Implementation

@useResult
FCircularProgressStyle lerp(FCircularProgressStyle other, double t) => FCircularProgressStyle(
  iconStyle: IconThemeData.lerp(iconStyle, other.iconStyle, t),
  motion: motion.lerp(other.motion, t),
);