RatingTheme constructor

const RatingTheme({
  1. required String name,
  2. required Gradient background,
  3. required Color dialogColor,
  4. required Gradient buttonGradient,
  5. required Gradient progressGradient,
  6. required Color textColor,
  7. required Color textSecondaryColor,
  8. required Color textMutedColor,
  9. required Color starColor,
  10. required Color accentColor,
})

Implementation

const RatingTheme({
  required this.name,
  required this.background,
  required this.dialogColor,
  required this.buttonGradient,
  required this.progressGradient,
  required this.textColor,
  required this.textSecondaryColor,
  required this.textMutedColor,
  required this.starColor,
  required this.accentColor,
});