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