start method

void start(
  1. String url
)

Implementation

void start(String url) {
  currentUrl = url;

  stop();
  recreateNode();
  if (isPlaying) {
    resume();
  }
}