play method

  1. @nonVirtual
void play()

Starts the sound. Played from the beginning if was paused.

Implementation

@nonVirtual
void play() {
  stop();
  resume();
}