FileInfoDto constructor

FileInfoDto({
  1. bool? published,
  2. int? fileId,
  3. int? fileSize,
  4. String? fileName,
  5. DateTime? createTime,
  6. bool? video,
  7. int? fragments,
})

Implementation

FileInfoDto({
  this.published,
  this.fileId,
  this.fileSize,
  this.fileName,
  this.createTime,
  this.video,
  this.fragments,
});