MobileEditCommentDTO constructor

MobileEditCommentDTO({
  1. List<FileTransferDTO> newAttachments = const [],
  2. List<String> attachmentsToDelete = const [],
  3. String? message,
})

Returns a new MobileEditCommentDTO instance.

Implementation

MobileEditCommentDTO({
  this.newAttachments = const [],
  this.attachmentsToDelete = const [],
  this.message,
});