DownloadVideoModel constructor

DownloadVideoModel({
  1. String? senderId,
  2. String? videoId,
  3. String? returnType = "blob",
  4. required bool isInternal,
  5. required DownloadVideoMode downloadVideoMode,
})

Implementation

DownloadVideoModel({
  this.senderId,
  this.videoId,
  this.returnType = "blob",
  required this.isInternal,
  required this.downloadVideoMode,
});