CommentDataEntityRequest constructor

CommentDataEntityRequest({
  1. required String? content,
  2. String? projectId,
  3. String? taskId,
  4. required AttachmentModel? attachment,
})

Implementation

CommentDataEntityRequest({
  required this.content,
  this.projectId,
  this.taskId,
  required this.attachment,
});