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