animate method

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

This method is used to animate the led channel(s). The led will be turned on and off repeatedly.

Implementation

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