toEntity method
Implementation
Comment toEntity() {
return Comment(
id: id,
content: content,
postedAt: postedAt,
projectId: projectId,
taskId: taskId,
attachment: attachment?.toEntity(),
);
}
Comment toEntity() {
return Comment(
id: id,
content: content,
postedAt: postedAt,
projectId: projectId,
taskId: taskId,
attachment: attachment?.toEntity(),
);
}