Video constructor

Video({
  1. required String videoId,
  2. String? captionLanguageCode,
  3. bool setLoop = false,
})

Implementation

Video({
  required this.videoId,
  this.captionLanguageCode,
  this.setLoop = false,
});