stopChannel method

void stopChannel(
  1. int channelId
)

Stops the sound playing on the specified channelId.

Implementation

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