toEng static method
Translate series in number from Russian to English latters
Implementation
static String toEng(String value) {
String result = value.toUpperCase();
_engToRus.forEach((key, value) {
result = result.replaceAll(value, key);
});
return result;
}