StreamVideoAttachment constructor

const StreamVideoAttachment({
  1. Key? key,
  2. required Message message,
  3. required Attachment video,
  4. ShapeBorder? shape,
  5. BoxConstraints constraints = const BoxConstraints(),
})

Shows a video attachment in a StreamMessageWidget.

Implementation

const StreamVideoAttachment({
  super.key,
  required this.message,
  required this.video,
  this.shape,
  this.constraints = const BoxConstraints(),
});