VideoAttachment constructor

const VideoAttachment({
  1. required MediaPayload payload,
  2. String? thumbnail,
  3. int? width,
  4. int? height,
  5. int? duration,
})

Implementation

const VideoAttachment({
  required this.payload,
  this.thumbnail,
  this.width,
  this.height,
  this.duration,
}) : super(type: 'video');