CachedVideoPlayerController.network constructor
CachedVideoPlayerController.network(
- String dataSource, {
- VideoFormat? formatHint,
- Future<
ClosedCaptionFile> ? closedCaptionFile, - VideoPlayerOptions? videoPlayerOptions,
- Map<
String, String> httpHeaders = const {},
Constructs a CachedVideoPlayerController 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.
httpHeaders
option allows to specify HTTP headers
for the request to the dataSource
.
Implementation
CachedVideoPlayerController.network(
this.dataSource, {
this.formatHint,
this.closedCaptionFile,
this.videoPlayerOptions,
this.httpHeaders = const {},
}) : dataSourceType = DataSourceType.network,
package = null,
super(CachedVideoPlayerValue(duration: Duration.zero));