tefAlert static method

bool tefAlert(
  1. String value
)

Implementation

static bool tefAlert(String value) {
  List<String> result = [
    '82',
    '96',
    '-1',
    '-4',
    '-5',
    '-10',
    '-12',
    '-13',
    '-43',
    '-100',
  ];
  bool alert = false;

  for (var e in result) {
    if (value.contains(e)) {
      alert = true;
      break;
    }
  }
  return alert;
}