StarsConfig constructor

const StarsConfig({
  1. int starCount = 75,
  2. double minStarSize = .5,
  3. double maxStarSize = 3,
  4. List<Color> colors = const <Color>[Colors.white],
})

Implementation

const StarsConfig({
  this.starCount = 75,
  this.minStarSize = .5,
  this.maxStarSize = 3,
  this.colors = const <Color>[Colors.white]
});