AmbientLightSettings constructor

const AmbientLightSettings({
  1. required List<Color> colors,
  2. required double intensity,
  3. required double spread,
  4. required double blur,
  5. required bool isPulsing,
  6. required double pulseScale,
  7. required Duration duration,
})

Implementation

const AmbientLightSettings({
  required this.colors,
  required this.intensity,
  required this.spread,
  required this.blur,
  required this.isPulsing,
  required this.pulseScale,
  required this.duration,
});