pause method

void pause()

Pauses the video session.

Invoke it when the app goes to background with an active session.

This method is only for Android. On iOS will do nothing.

Implementation

void pause() async {
  await _openTokFlutter?.onPause();
}