VideoB constructor

const VideoB({
  1. Key? key,
  2. required double volume,
  3. required String url,
  4. required bool? play,
  5. required bool withControls,
  6. String title = 'Chewie Demo',
})

Implementation

const VideoB({
  Key? key,
  required this.volume,
  required this.url,
  required this.play,
  required this.withControls,
  this.title = 'Chewie Demo',
}) : super();