CommentDataRequest constructor
- required String? content,
- required String? projectId,
- required String? taskId,
- 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);