AmbientLight constructor

AmbientLight(
  1. {required String id,
  2. int? color,
  3. TransitionOptions? colorTransition,
  4. double? intensity,
  5. TransitionOptions? intensityTransition}
)

Implementation

AmbientLight({
  required this.id,
  this.color,
  this.colorTransition,
  this.intensity,
  this.intensityTransition,
});