imt method

String imt(
  1. String value
)

Implementation

String imt(String value) {
  String currentKey = zhMapRevert[value] ?? getKeyFromMap(zhMap, value) ?? "";
  String translatedValue = t[currentKey] ?? value;
  return translatedValue;
}