pauseChannel method

void pauseChannel(
  1. int channelId
)

Pauses the sound playing on the specified channelId.

Implementation

void pauseChannel(int channelId) {
  _backend.pauseChannel(channelId);
}