CloudVideo constructor

const CloudVideo({
  1. Key? key,
  2. required CloudMediaItem media,
  3. double? width,
  4. double? height,
  5. bool autoPlay = false,
  6. bool showControls = true,
})

Implementation

const CloudVideo({
  super.key,
  required this.media,
  this.width,
  this.height,
  this.autoPlay = false,
  this.showControls = true,
});