TicketMobileCommentDTO constructor

TicketMobileCommentDTO({
  1. int? id,
  2. DateTime? createdAt,
  3. int? creatorSubjectId,
  4. String? creatorSubjectName,
  5. String? text,
  6. List<String> attachmentIds = const [],
  7. DateTime? modifiedAt,
  8. TicketMobileCommentDTOMessageTypeEnum? messageType,
  9. DateTime? deletedAt,
  10. int? deletedBySubjectId,
  11. String? deletedByName,
  12. bool? allowEdit,
})

Returns a new TicketMobileCommentDTO instance.

Implementation

TicketMobileCommentDTO({
  this.id,
  this.createdAt,
  this.creatorSubjectId,
  this.creatorSubjectName,
  this.text,
  this.attachmentIds = const [],
  this.modifiedAt,
  this.messageType,
  this.deletedAt,
  this.deletedBySubjectId,
  this.deletedByName,
  this.allowEdit,
});