learningPathDetail function
Implementation
@riverpod
Future<LearningPath> learningPathDetail(Ref ref, String pathId) async {
final ds = ref.watch(orgDatasourceProvider);
final model = await ds.getLearningPath(pathId);
return model.toEntity();
}