lerp static method
Implementation
static ZeroRadioStyle lerp(ZeroRadioStyle? a, ZeroRadioStyle? b, double t) {
return ZeroRadioStyle(
activeColor: Color.lerp(a?.activeColor, b?.activeColor, t),
inactiveColor: Color.lerp(a?.inactiveColor, b?.inactiveColor, t),
disabledColor: Color.lerp(a?.disabledColor, b?.disabledColor, t),
);
}