CommentDataRequest constructor

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

Implementation

CommentDataRequest({
  required this.content,
  required this.projectId,
  required this.taskId,
  required this.attachment,
}) : super(
          attachment: attachment,
          content: content,
          projectId: projectId,
          taskId: taskId);