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