toEntity method

SkillGapEntry toEntity()

Implementation

SkillGapEntry toEntity() {
  return SkillGapEntry(
    userId: userId,
    displayName: displayName,
    skillId: skillId,
    skillName: skillName,
    category: category,
    expectedMastery: expectedMastery,
    actualMastery: actualMastery,
    gap: gap,
  );
}