getSucessos static method

List<ParcsnEspecialErrorInfo> getSucessos()

Obtém todos os sucessos do PARCSN-ESP

Implementation

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