getErros static method

List<PertsnErrorInfo> getErros()

Obtém todos os erros gerais do PARCSN

Implementation

static List<PertsnErrorInfo> getErros() {
  return _erros.values.where((e) => e.tipo == PertsnErrorType.erro).toList();
}