VideoViewValue constructor

const VideoViewValue({
  1. Duration duration = Duration.zero,
  2. Duration position = Duration.zero,
  3. Size size = Size.zero,
  4. bool isInitialized = false,
  5. bool isPlaying = false,
  6. bool isBuffering = false,
  7. bool isLooping = true,
  8. String? errorDescription,
})

Implementation

const VideoViewValue({
  this.duration = Duration.zero,
  this.position = Duration.zero,
  this.size = Size.zero,
  this.isInitialized = false,
  this.isPlaying = false,
  this.isBuffering = false,
  this.isLooping = true,
  this.errorDescription,
});