Light constructor

Light({
  1. Anchor? anchor,
  2. int? color,
  3. StyleTransition? colorTransition,
  4. double? intensity,
  5. StyleTransition? intensityTransition,
  6. List<double?>? position,
  7. StyleTransition? positionTransition,
})

Implementation

Light({
  this.anchor,
  this.color,
  this.colorTransition,
  this.intensity,
  this.intensityTransition,
  this.position,
  this.positionTransition,
});