FxStarRating constructor

FxStarRating({
  1. double rating = 5,
  2. double size = 16,
  3. double spacing = 0,
  4. Color activeColor = Colors.yellow,
  5. Color inactiveColor = Colors.black,
  6. bool inactiveStarFilled = false,
  7. bool showInactive = true,
})

Implementation

FxStarRating(
    {this.rating = 5,
    this.size = 16,
    this.spacing = 0,
    this.activeColor = Colors.yellow,
    this.inactiveColor = Colors.black,
    this.inactiveStarFilled = false,
    this.showInactive = true});