tefAlert static method
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;
}