Command.bgSetAdjust constructor

Command.bgSetAdjust({
  1. int? id,
  2. required String action,
  3. required String property,
})

Command to change brightness, color temperature or color without knowing current value (background light).

see Command.setAdjust

Implementation

Command.bgSetAdjust({
  this.id,
  required String action,
  required String property,
})  : method = CommandMethods.bgSetAdjust,
      parameters = <String>[action, property];