getSucessos static method

List<ParcmeiErrorInfo> getSucessos()

Implementation

static List<ParcmeiErrorInfo> getSucessos() {
  return _errors.values
      .where((error) => error.categoria == 'Sucesso')
      .toList();
}