lerp static method

It takes two styles and a value between 0 and 1, and returns a style that is a mix of the two styles

Implementation

static ZeroChipOutlinedStyle lerp(
    ZeroChipOutlinedStyle? a, ZeroChipOutlinedStyle? b, double t) {
  return ZeroChipOutlinedStyle(
    borderColor: Color.lerp(a?.borderColor, b?.borderColor, t),
    iconColor: Color.lerp(a?.iconColor, b?.iconColor, t),
    textStyle: TextStyle.lerp(a?.textStyle, b?.textStyle, t),
  );
}