Command.bgStartColorFlow constructor

Command.bgStartColorFlow({
  1. int? id,
  2. required int count,
  3. required int action,
  4. required String flowExpression,
})

Command to start a color flow (background light).

see Command.startColorFlow

Implementation

Command.bgStartColorFlow({
  this.id,
  required int count,
  required int action,
  required String flowExpression,
})  : method = CommandMethods.bgStartCF,
      parameters = <dynamic>[count, action, flowExpression];