FlatLight constructor

FlatLight({
  1. required String id,
  2. Anchor? anchor,
  3. int? color,
  4. TransitionOptions? colorTransition,
  5. double? intensity,
  6. TransitionOptions? intensityTransition,
  7. List<double?>? position,
  8. TransitionOptions? positionTransition,
})

Implementation

FlatLight({
  required this.id,
  this.anchor,
  this.color,
  this.colorTransition,
  this.intensity,
  this.intensityTransition,
  this.position,
  this.positionTransition,
});