LightSettings constructor

LightSettings({
  1. Color? color,
  2. String? lightOffDuration,
  3. String? lightOnDuration,
})

Implementation

LightSettings({
  this.color,
  this.lightOffDuration,
  this.lightOnDuration,
});