pause method

Future<void> pause()

Pauses the video.

Implementation

Future<void> pause() async {
  await controller.pause();
}