obtainFreeChannel method

int obtainFreeChannel(
  1. List<int>? targetChannels
)

Finds and returns the ID of a free (stopped) audio channel.

Implementation

int obtainFreeChannel(List<int>? targetChannels) {
  return _backend.obtainFreeChannel(targetChannels);
}