certificationDetail function
Implementation
@riverpod
Future<Certification> certificationDetail(
Ref ref,
String certificationId,
) async {
final ds = ref.watch(orgDatasourceProvider);
final model = await ds.getCertification(certificationId);
return model.toEntity();
}