getEntradasIncorretas static method
Obtém todos os erros de entrada incorreta do PARCSN
Implementation
static List<PertsnErrorInfo> getEntradasIncorretas() {
return _erros.values
.where((e) => e.categoria == PertsnErrorCategory.entradaIncorreta)
.toList();
}