toEntity method

UserNote toEntity()

Implementation

UserNote toEntity() {
  return UserNote(
    id: id,
    userId: userId,
    topicId: topicId,
    sessionId: sessionId,
    title: title,
    content: content,
    tags: tags,
    isPinned: isPinned,
    createdAt: createdAt,
    updatedAt: updatedAt,
  );
}