TicketAttachmentDTOInternal constructor

TicketAttachmentDTOInternal({
  1. required int id,
  2. required int ticketId,
  3. required DateTime attachedAt,
  4. required String attachmentId,
  5. required String fileName,
  6. required String contentType,
  7. required int fileSize,
})

Returns a new TicketAttachmentDTOInternal instance.

Implementation

TicketAttachmentDTOInternal({
  required this.id,
  required this.ticketId,
  required this.attachedAt,
  required this.attachmentId,
  required this.fileName,
  required this.contentType,
  required this.fileSize,
});