AttachmentModel constructor

AttachmentModel({
  1. String? id,
  2. String? name,
  3. int? sizeInBytes,
  4. String? privateUrl,
  5. String? publicUrl,
  6. String? downloadUrl,
  7. bool? isNew,
})

Implementation

AttachmentModel({
  this.id,
  this.name,
  this.sizeInBytes,
  this.privateUrl,
  this.publicUrl,
  this.downloadUrl,
  this.isNew,
});