startVideoPaused method

SessionSettingsBuilder startVideoPaused(
  1. bool paused
)

Sets whether video should start paused.

Implementation

SessionSettingsBuilder startVideoPaused(bool paused) {
  _startVideoPaused = paused;
  return this;
}