fallback static method
A default value style of ZeroRatingStyle
Implementation
static ZeroRatingStyle fallback({
Color? activeColor,
Color? inactiveColor,
double? spacing,
}) =>
ZeroRatingStyle(
activeColor: activeColor ?? ZeroColors.sunriseYellow,
inactiveColor: inactiveColor ?? ZeroColors.neutral,
spacing: spacing,
);