VideoPlayerValue constructor

VideoPlayerValue({
  1. required Duration? duration,
  2. Size? size,
  3. Duration position = const Duration(),
  4. Caption caption = const Caption(),
  5. List<DurationRange> buffered = const <DurationRange>[],
  6. bool isPlaying = false,
  7. bool isLooping = false,
  8. bool isBuffering = false,
  9. double volume = 1.0,
  10. double playbackSpeed = 1.0,
  11. String? errorDescription,
})

Constructs a video with the given values. Only duration is required. The rest will initialize with default values when unset.

Implementation

VideoPlayerValue({
  required this.duration,
  this.size,
  this.position = const Duration(),
  this.caption = const Caption(),
  this.buffered = const <DurationRange>[],
  this.isPlaying = false,
  this.isLooping = false,
  this.isBuffering = false,
  this.volume = 1.0,
  this.playbackSpeed = 1.0,
  this.errorDescription,
});