toEntity method

Comment toEntity()

Implementation

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