ProfileAttachment constructor

ProfileAttachment({
  1. String? attachment,
  2. String? name,
  3. bool? shouldDelete,
  4. int? id,
  5. String? url,
})

Returns a new ProfileAttachment instance.

Implementation

ProfileAttachment({
  this.attachment,
  this.name,
  this.shouldDelete,
  this.id,
  this.url,
});