build method

Future<void> build({
  1. required String id,
})

This method is used to build the led channel(s). This method closes the builder and prepares the led channel(s) for activation.

Implementation

Future<void> build({
  required String id,
}) async {
  return await GlyphInterfaceSdkPlatform.instance.build(id: id);
}