Document constructor

Document({
  1. required String fileId,
  2. required String fileUniqueId,
  3. PhotoSize? thumbnail,
  4. String? fileName,
  5. String? mimeType,
  6. int? fileSize,
})

Implementation

Document({
  required this.fileId,
  required this.fileUniqueId,
  this.thumbnail,
  this.fileName,
  this.mimeType,
  this.fileSize,
});