fallback static method

ZeroRadioStyle fallback({
  1. Color? activeColor,
  2. Color? inactiveColor,
  3. Color? disabledColor,
})

A default value style of ZeroRadioStyle

Implementation

static ZeroRadioStyle fallback({
  Color? activeColor,
  Color? inactiveColor,
  Color? disabledColor,
}) =>
    ZeroRadioStyle(
      activeColor: activeColor ?? ZeroColors.primary,
      disabledColor: disabledColor ?? ZeroColors.neutral[8],
      inactiveColor: inactiveColor ?? ZeroColors.neutral[7],
    );