fallback static method

ZeroChipOutlinedStyle fallback({
  1. Color? borderColor,
  2. TextStyle? textStyle,
  3. Color? iconColor,
})

Get default value style of ZeroChipOutlined

Implementation

static ZeroChipOutlinedStyle fallback({
  Color? borderColor,
  TextStyle? textStyle,
  Color? iconColor,
}) =>
    ZeroChipOutlinedStyle(
      borderColor: borderColor ?? ZeroColors.neutral,
      iconColor: iconColor ?? ZeroColors.neutral,
      textStyle: textStyle ?? TextStyle(color: ZeroColors.neutral[10]),
    );