getErros static method

List<ParcmeiEspecialErrorInfo> getErros()

Obtém todos os erros gerais do PARCMEI-ESP

Implementation

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