fallback static method

ZeroRatingStyle fallback({
  1. Color? activeColor,
  2. Color? inactiveColor,
  3. double? spacing,
})

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