StarFieldConfig constructor

const StarFieldConfig({
  1. int starCount = 100,
  2. double maxStarSize = 1.5,
  3. Color starColor = Colors.white,
  4. int seed = 42,
})

Implementation

const StarFieldConfig({
  this.starCount = 100,
  this.maxStarSize = 1.5,
  this.starColor = Colors.white,
  this.seed = 42,
});