Star constructor

const Star({
  1. double progress = 0,
  2. double fat = 0.5,
  3. Color fillColor = Colors.yellow,
  4. Color emptyColor = Colors.grey,
  5. int num = 5,
  6. double size = 25,
})

Implementation

const Star(
    {this.progress = 0,
    this.fat = 0.5,
    this.fillColor = Colors.yellow,
    this.emptyColor = Colors.grey,
    this.num = 5,
    this.size = 25});