WebPlayerValue constructor

WebPlayerValue({
  1. double currentTime = 0,
  2. double duration = 0,
  3. double bufferedPercent = 0,
  4. bool isPaused = true,
  5. bool isFullScreen = false,
  6. bool isInPictureInPicture = false,
  7. bool isTracking = false,
  8. bool isCover = false,
  9. bool isUserActive = false,
  10. bool isReady = false,
  11. String? errorMessage,
  12. List<VideoTrack>? textTracks,
  13. List<VideoTrack>? audioTracks,
  14. InAppWebViewController? webViewController,
})

Implementation

WebPlayerValue({
  this.currentTime = 0,
  this.duration = 0,
  this.bufferedPercent = 0,
  this.isPaused = true,
  this.isFullScreen = false,
  this.isInPictureInPicture = false,
  this.isTracking = false,
  this.isCover = false,
  this.isUserActive = false,
  this.isReady = false,
  this.errorMessage,
  this.textTracks,
  this.audioTracks,
  this.webViewController,
});