Attachments constructor

Attachments({
  1. String? id,
  2. String? fileType,
  3. String? fileName,
  4. String? createdAt,
})

Implementation

Attachments({
    String? id,
    String? fileType,
    String? fileName,
    String? createdAt,}){
  _id = id;
  _fileType = fileType;
  _fileName = fileName;
  _createdAt = createdAt;
}