fallback static method
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]),
);