parseStatusFromRaw function
Helpers opcionales
Obtiene la entrada ParseStatusEntry a partir de un raw string (valor del estado).
Implementation
/// Obtiene la entrada ParseStatusEntry a partir de un raw string (valor del estado).
ParseStatusEntry? parseStatusFromRaw(String raw) {
final status = CertificateStatus.fromValue(raw);
if (status == null) return null;
return PARSE_STATUS_ENUM[status];
}