VideoPlayerController.file constructor

VideoPlayerController.file(
  1. File file, {
  2. Future<ClosedCaptionFile>? closedCaptionFile,
  3. VideoPlayerOptions? videoPlayerOptions,
})

Implementation

VideoPlayerController.file(File file, {this.closedCaptionFile, this.videoPlayerOptions})
    : dataSource = 'file://${file.path}',
      dataSourceType = DataSourceType.file,
      package = null,
      formatHint = null,
      httpHeaders = const {},
      super(VideoPlayerValue(duration: Duration.zero));