channel method
This method is used to select the led channel to activate. Should be called after the builder method.
Implementation
Future<void> channel({
required String id,
required int channel,
}) async {
return await GlyphInterfaceSdkPlatform.instance
.channel(id: id, channel: channel);
}