replay method

void replay()

Replay the current playing video from beginning.

Implementation

void replay() {
  seekTo(Duration(minutes: 0));
  play();
}