pause method

void pause()

Pauses the current video playback.

Implementation

void pause() {
  currentController.pause();
  onUpdate?.call();
}