StarModel constructor

StarModel({
  1. required bool fillShape,
  2. required double x,
  3. required double y,
  4. required double z,
  5. required double pz,
  6. required Random random,
  7. required double width,
  8. required double height,
  9. required Color color,
  10. required OutlinedBorder shape,
})

Implementation

StarModel({
  required this.fillShape,
  required this.x,
  required this.y,
  required this.z,
  required this.pz,
  required this.random,
  required this.width,
  required this.height,
  required this.color,
  required this.shape,
});