VideoApp constructor

const VideoApp({
  1. required String videoUrl,
  2. required bool readOnly,
  3. @Deprecated('The context is no longer required and will be removed on future releases') BuildContext? context,
  4. Key? key,
  5. void onVideoInit(
    1. GlobalKey<State<StatefulWidget>> videoContainerKey
    )?,
})

Implementation

const VideoApp({
  required this.videoUrl,
  required this.readOnly,
  @Deprecated(
    'The context is no longer required and will be removed on future releases',
  )
  BuildContext? context,
  super.key,
  this.onVideoInit,
});