getErros static method

List<ParcsnEspecialErrorInfo> getErros()

Obtém todos os erros gerais do PARCSN-ESP

Implementation

static List<ParcsnEspecialErrorInfo> getErros() {
  return _errors.values
      .where((e) => e.tipo == ParcsnEspecialErrorType.erro)
      .toList();
}