VideoPlayerValue constructor
VideoPlayerValue({})
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.buffered = const <DurationRange>[],
this.isPlaying = false,
this.isLooping = false,
this.isBuffering = false,
this.isMuted = false,
this.volume = 1.0,
this.errorDescription,
});