VideoPlayerWidget constructor

const VideoPlayerWidget({
  1. Key? key,
  2. PlayerController? controller,
  3. AndroidOption androidConfig = defaultOption,
  4. IosOptions? iosOptions,
  5. String? url,
  6. bool autoPlay = true,
  7. VoidCallback? onCreate,
  8. bool? autoHideUi,
})

Implementation

const VideoPlayerWidget(
    {Key? key,
    this.controller,
    this.androidConfig = defaultOption,
    this.iosOptions,
    this.url,
    this.autoPlay = true,
    this.onCreate,
    this.autoHideUi})
    : super(key: key);