start method

void start(
  1. double position
)

Implementation

void start(double position) {
  isPlaying = true;
  if (currentUrl == null) {
    return; // nothing to play yet
  }
  if (player == null) {
    recreateNode();
  }
  player!.play();
  player!.currentTime = position;
}