MediaContentWidget constructor

const MediaContentWidget({
  1. Key? key,
  2. required String content,
  3. double? maxHeight,
  4. double? maxWidth,
  5. EdgeInsets? padding,
  6. bool autoPlay = false,
  7. bool showControls = true,
})

Implementation

const MediaContentWidget({
  super.key,
  required this.content,
  this.maxHeight,
  this.maxWidth,
  this.padding,
  this.autoPlay = false,
  this.showControls = true,
});