FTxCustomRating constructor

const FTxCustomRating({
  1. Key? key,
  2. double? starSize = 24,
  3. double? starSpacing = 8,
  4. List<Color>? starColors,
  5. required OnRatingChange onRatingChange,
  6. Color inactiveStarColor = Colors.grey,
})

Implementation

const FTxCustomRating(
    {Key? key,
    this.starSize = 24,
    this.starSpacing = 8,
    this.starColors,
    required this.onRatingChange,
    this.inactiveStarColor = Colors.grey})
    : super(key: key);