getSucessos static method

List<ParcmeiEspecialErrorInfo> getSucessos()

Obtém todos os sucessos do PARCMEI-ESP

Implementation

static List<ParcmeiEspecialErrorInfo> getSucessos() {
  return _errorCodes.values
      .where((error) => error.tipo == ParcmeiEspecialErrorType.sucesso)
      .toList();
}