resumeChannel method

void resumeChannel(
  1. int channelId
)

Resumes a paused sound on the specified channelId.

Implementation

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