resetAllControllers method
Implementation
void resetAllControllers({int? channel}) {
for (int i = 0; i < channels.length; i++) {
if (channel == null || channel == i) {
channels[i].resetAllControllers();
}
}
}
void resetAllControllers({int? channel}) {
for (int i = 0; i < channels.length; i++) {
if (channel == null || channel == i) {
channels[i].resetAllControllers();
}
}
}