fallback static method
Get default value style of ZeroChipFilled
Implementation
static ZeroChipFilledStyle fallback({
Color? backgroundColor,
TextStyle? textStyle,
Color? iconColor,
}) =>
ZeroChipFilledStyle(
backgroundColor: backgroundColor ?? ZeroColors.neutral[4],
iconColor: iconColor ?? ZeroColors.neutral,
textStyle: textStyle ?? TextStyle(color: ZeroColors.neutral[10]),
);