lerp method
Linearly interpolate between this and another FCircularProgressStyle using the given factor t.
Implementation
@useResult
FCircularProgressStyle lerp(FCircularProgressStyle other, double t) =>
.new(iconStyle: .lerp(iconStyle, other.iconStyle, t), motion: motion.lerp(other.motion, t));