FlVideoPlayerWithAssetsPicker constructor

const FlVideoPlayerWithAssetsPicker({
  1. Key? key,
  2. required VideoPlayerController controller,
  3. bool autoPlay = true,
  4. bool looping = true,
  5. Widget? cover,
  6. Widget loading = const CircularProgressIndicator(),
  7. Widget error = const Icon(Icons.info_outline),
  8. Widget? controls,
})

Implementation

const FlVideoPlayerWithAssetsPicker({
  super.key,
  required this.controller,
  this.autoPlay = true,
  this.looping = true,
  this.cover,
  this.loading = const CircularProgressIndicator(),
  this.error = const Icon(Icons.info_outline),
  this.controls,
});