VideoPageBuilder constructor

const VideoPageBuilder({
  1. Key? key,
  2. required AssetEntity? asset,
  3. bool autoPlay = false,
  4. ImageProvider<Object>? thumbnail,
  5. VoidCallback? onFinish,
  6. dynamic toggleShowAppBar(
    1. bool
    )?,
})

Implementation

const VideoPageBuilder({
  Key? key,
  required this.asset,
  this.autoPlay = false,
  this.thumbnail,
  this.onFinish,
  this.toggleShowAppBar,
}) : super(key: key);