setPeriod method
This method is used to set the period of the led channel(s).
Implementation
Future<void> setPeriod({
required String id,
required int period,
}) async {
return await GlyphInterfaceSdkPlatform.instance
.setPeriod(id: id, period: period);
}