onProgressDragStart method
void
onProgressDragStart()
Implementation
void onProgressDragStart() async {
if (_dispose) {
return;
}
_autoPause = videoPlayerValue?.isPlaying ?? false;
if (_autoPause) {
await pause();
}
}