fallback static method

ZeroChipFilledStyle fallback({
  1. Color? backgroundColor,
  2. TextStyle? textStyle,
  3. Color? iconColor,
})

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