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