toEntity method

LearningGoal toEntity()

Implementation

LearningGoal toEntity() {
  return LearningGoal(
    id: id,
    userId: userId,
    domainId: domainId,
    title: title,
    description: description,
    targetMastery: targetMastery,
    targetDate: targetDate,
    status: status,
    progressPct: progressPct,
  );
}