VideoPlayerController.network constructor

VideoPlayerController.network(
  1. String dataSource, {
  2. VideoFormat? formatHint,
  3. Future<ClosedCaptionFile>? closedCaptionFile,
  4. VideoPlayerOptions? videoPlayerOptions,
  5. VideoQuality? youtubeVideoQuality,
})

Constructs a VideoPlayerController playing a video from obtained from the network.

The URI for the video is given by the dataSource argument and must not be null. Android only: The formatHint option allows the caller to override the video format detection code.

Implementation

VideoPlayerController.network(this.dataSource,
    {this.formatHint,
    this.closedCaptionFile,
    this.videoPlayerOptions,
    this.youtubeVideoQuality})
    : dataSourceType = DataSourceType.network,
      package = null,
      super(VideoPlayerValue(duration: null));