MmFileInfo constructor

MmFileInfo({
  1. String? id,
  2. String? userId,
  3. String? postId,
  4. int? createAt,
  5. int? updateAt,
  6. int? deleteAt,
  7. String? name,
  8. String? extension_,
  9. int? size,
  10. String? mimeType,
  11. int? width,
  12. int? height,
  13. bool? hasPreviewImage,
})

Returns a new MmFileInfo instance.

Implementation

MmFileInfo({
  this.id,
  this.userId,
  this.postId,
  this.createAt,
  this.updateAt,
  this.deleteAt,
  this.name,
  this.extension_,
  this.size,
  this.mimeType,
  this.width,
  this.height,
  this.hasPreviewImage,
});