setColorGenerator method
Sets color generator.
Implementation
Future<void> setColorGenerator(int index,
{int? hue, int? saturation, int? luminance}) async {
await sendCommand(ColorGeneratorCommand(
index: index,
hue: hue,
saturation: saturation,
luminance: luminance,
));
}