channel method

Future<void> channel({
  1. required String id,
  2. required int channel,
})

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);
}