toRus static method

String toRus(
  1. String value
)

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;
}