getSucessos static method
Obtém todos os sucessos do PARCMEI-ESP
Implementation
static List<ParcmeiEspecialErrorInfo> getSucessos() {
return _errorCodes.values
.where((error) => error.tipo == ParcmeiEspecialErrorType.sucesso)
.toList();
}