lerp static method
Implementation
static ZeroChipFilledStyle lerp(
ZeroChipFilledStyle? a, ZeroChipFilledStyle? b, double t) {
return ZeroChipFilledStyle(
backgroundColor: Color.lerp(a?.backgroundColor, b?.backgroundColor, t),
iconColor: Color.lerp(a?.iconColor, b?.iconColor, t),
textStyle: TextStyle.lerp(a?.textStyle, b?.textStyle, t),
);
}