restart method

Future<void> restart()

Restart the video from the beginning

Implementation

Future<void> restart() async {
  _checkInitialized();
  await _playerMethodManager.restart();
}