GoogleCastMediaLiveSeekableRange constructor

GoogleCastMediaLiveSeekableRange({
  1. Duration? end,
  2. bool? isLiveDone,
  3. bool? isMovingWindow,
  4. Duration? start,
})

Creates a new GoogleCastMediaLiveSeekableRange instance.

end - End of the seekable range in seconds. isLiveDone - Whether the live stream is ended. isMovingWindow - Whether the live seekable range is a moving window. start - Start of the seekable range in seconds.

Implementation

GoogleCastMediaLiveSeekableRange({
  this.end,
  this.isLiveDone,
  this.isMovingWindow,
  this.start,
});